/* ============================================================
   MARKETPLACE clon del antiguo (gupistartup.com)
   - Sidebar limpia con divisores
   - Grid 4 col cards verticales
   - Logo redondo + nombre + descripción + badge categoría + estrellas N/A
   ============================================================ */

/* === HERO === */
.mkt-hero {
  background: var(--cream);
  padding: 4rem 0 2.5rem;
  min-height: auto !important;
}
.mkt-hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
}
.mkt-hero-title h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
  color: var(--ink);
}
.mkt-count {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  opacity: 0.55;
}

/* CTAs derecha: 2 filas con texto + botón */
.mkt-hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mkt-cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
}
.mkt-cta-row span {
  font-size: 0.93rem;
  color: var(--ink);
  opacity: 0.65;
}
.mkt-cta-row .btn { font-size: 0.92rem; padding: 0.65rem 1.2rem; }

/* === MAIN LAYOUT === */
.mkt-main {
  background: var(--cream);
  padding: 1.5rem 0 4rem;
  min-height: auto !important;
  border-top: 1px solid rgba(20,24,31,0.07);
}
.mkt-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* === SIDEBAR limpia con divisores === */
.mkt-sidebar {
  position: sticky;
  top: 100px;
  padding: 0;
}
.mkt-filter-block {
  border-bottom: 1px solid rgba(20,24,31,0.08);
  padding: 1.25rem 0;
}
.mkt-filter-block:first-child { padding-top: 0; }
.mkt-filter-block:last-child { border-bottom: 0; }
.mkt-filter-block > label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  opacity: 0.7;
  margin-bottom: 0.65rem;
}
.mkt-filter-block select {
  width: 100%;
  padding: 0.4rem 0;
  border: 0;
  background: transparent;
  font-family: var(--font, 'Poppins');
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%2314181F' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 20px;
}
.mkt-filter-block select:focus { outline: none; }
.mkt-filter-block input[type="search"] {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(20,24,31,0.12);
  background: #fff;
  font-family: var(--font, 'Poppins');
  font-size: 0.9rem;
  color: var(--ink);
  margin-top: 0.25rem;
}
.mkt-filter-block input[type="search"]:focus { outline: none; border-color: var(--coral); }

.mkt-categories {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mkt-categories li button {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 0.45rem 0;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--ink);
  cursor: pointer;
  opacity: 0.85;
  transition: color 0.15s;
}
.mkt-categories li button:hover { color: var(--coral); opacity: 1; }
.mkt-categories li button.is-active {
  color: var(--coral);
  font-weight: 600;
  opacity: 1;
}
.mkt-categories li button .count {
  float: right;
  font-size: 0.78rem;
  opacity: 0.5;
}

/* === GRID PROVEEDORES (4 col cards verticales) === */
.mkt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
.mkt-loading, .mkt-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  opacity: 0.6;
  background: #fff;
  border-radius: 14px;
  border: 1px dashed rgba(20,24,31,0.15);
}

.mkt-card {
  background: #fff;
  border: 1px solid rgba(20,24,31,0.08);
  border-radius: 14px;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  min-height: 240px;
}
.mkt-card:hover {
  transform: translateY(-2px);
  border-color: rgba(242,107,91,0.4);
  box-shadow: 0 6px 18px rgba(20,24,31,0.06);
}

/* "+" icon top right (decorativo, abre URL) */
.mkt-card-plus {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(20,24,31,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink);
  opacity: 0.5;
  background: transparent;
  line-height: 1;
}
.mkt-card:hover .mkt-card-plus {
  opacity: 1;
  border-color: var(--coral);
  color: var(--coral);
}

/* Logo grande redondo */
.mkt-card-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  margin: 0.5rem 0 0.5rem;
  background: var(--cream);
}
.mkt-card-logo .mkt-card-initial {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  z-index: 0;
}
.mkt-card-logo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.mkt-card h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.2;
}
.mkt-card-desc {
  margin: 0;
  font-size: 0.83rem;
  line-height: 1.4;
  opacity: 0.7;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mkt-card-bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  width: 100%;
  padding-top: 0.5rem;
}
.mkt-card-badge {
  background: rgba(242,107,91,0.1);
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  text-transform: capitalize;
}
.mkt-card-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.82rem;
  opacity: 0.75;
}
.mkt-card-rating .star { color: #FFC93C; font-size: 0.95rem; line-height: 1; }
.mkt-card-rating.rating-na { opacity: 0.5; }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .mkt-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .mkt-hero-grid { grid-template-columns: 1fr; }
  .mkt-hero-ctas { align-items: flex-start; }
  .mkt-cta-row { justify-content: flex-start; }
  .mkt-layout { grid-template-columns: 1fr; }
  .mkt-sidebar { position: static; }
  .mkt-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .mkt-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .mkt-grid { grid-template-columns: 1fr; }
  .mkt-card { min-height: auto; }
  .mkt-hero h1 { font-size: 1.85rem !important; }
  .mkt-cta-row { flex-direction: column; align-items: stretch; gap: 0.4rem; }
  .mkt-cta-row .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   HEADER CORAL propio del marketplace (replica gupistartup.com)
   ============================================================ */
.mkt-header {
  background: var(--coral);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}
.mkt-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.8rem 1.5rem;
}
.mkt-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}
.mkt-brand-logo {
  width: 26px; height: 26px;
  background: #fff;
  padding: 2px;
  border-radius: 6px;
}
.mkt-nav {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
}
.mkt-nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  transition: background 0.2s;
}
.mkt-nav a:hover { color: #fff; }
.mkt-nav a.is-active {
  background: rgba(255,255,255,0.25);
  color: #fff;
}
.mkt-back-home {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  text-decoration: none;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 999px;
}
.mkt-back-home:hover { background: rgba(255,255,255,0.15); color: #fff; }

/* ============================================================
   PLANES — replica exacta del antiguo (Free / Pro 9€ / Premium 19€)
   ============================================================ */
.mkt-plans-section {
  padding: 4rem 0 5rem;
  background: var(--cream);
  border-top: 1px solid rgba(20,24,31,0.06);
}
.mkt-plans-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.mkt-plans-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}
.mkt-plans-head p { opacity: 0.65; margin: 0; }

.mkt-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
.mkt-plan {
  background: #fff;
  border: 1px solid rgba(20,24,31,0.1);
  border-radius: 16px;
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.mkt-plan.is-premium { border-color: var(--coral); }
.mkt-plan-head { margin-bottom: 1.5rem; }
.mkt-plan-name {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.mkt-plan-emoji { font-size: 1.05rem; }
.mkt-plan-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.mkt-plan-price strong { font-weight: 800; }
.mkt-plan-price span {
  font-size: 0.85rem;
  opacity: 0.55;
  font-weight: 500;
  margin-left: 0.25rem;
}
.mkt-plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.mkt-plan ul li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.92rem;
  line-height: 1.4;
  opacity: 0.85;
}
.mkt-plan ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 700;
}
.mkt-plan-btn {
  display: block;
  text-align: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}
.mkt-plan-btn-coral {
  background: var(--coral);
  color: #fff;
}
.mkt-plan-btn-coral:hover { background: #E65A4A; }
.mkt-plan-btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(20,24,31,0.2);
}
.mkt-plan-btn-ghost:hover { background: rgba(20,24,31,0.05); }

/* ============================================================
   REGISTRO
   ============================================================ */
.mkt-register-section {
  padding: 4rem 0;
  background: var(--cream-soft, #FAF8EF);
}
.mkt-register-card {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  padding: 2.5rem;
  border: 1px solid rgba(20,24,31,0.08);
}
.mkt-register-card h2 {
  font-size: 1.7rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}
.mkt-register-card > p { opacity: 0.65; margin: 0 0 2rem; }
.mkt-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.mkt-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}
.mkt-form input,
.mkt-form select,
.mkt-form textarea {
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(20,24,31,0.15);
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 400;
}
.mkt-form input:focus,
.mkt-form select:focus,
.mkt-form textarea:focus { outline: none; border-color: var(--coral); }
.mkt-form button { margin-top: 0.5rem; }

/* ============================================================
   DETALLE EMPRESA (cuando hay ?slug=X)
   ============================================================ */
#mkt-detail { padding: 2rem 0 4rem; background: var(--cream); }
.mkt-detail-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.mkt-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--coral);
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.mkt-detail-back:hover { text-decoration: underline; }

.mkt-detail-hero {
  background: rgba(242,107,91,0.08);
  border-radius: 16px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 1.5rem;
  align-items: center;
}
.mkt-detail-logo {
  width: 100px;
  height: 100px;
  border-radius: 16px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.mkt-detail-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}
.mkt-detail-logo span {
  position: absolute;
  font-size: 2.5rem;
  font-weight: 700;
  z-index: 0;
}
.mkt-detail-info h1 {
  font-size: 1.85rem;
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.02em;
}
.mkt-detail-verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: #2E7CF6;
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
}
.mkt-detail-desc {
  color: var(--ink);
  opacity: 0.75;
  margin: 0 0 1rem;
  line-height: 1.4;
}
.mkt-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.mkt-detail-tag {
  background: var(--coral);
  color: #fff;
  padding: 0.3rem 0.85rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
}
.mkt-detail-visit {
  background: var(--coral);
  color: #fff;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.mkt-detail-visit:hover { background: #E65A4A; }

.mkt-detail-body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.mkt-detail-section {
  background: #fff;
  border: 1px solid rgba(20,24,31,0.08);
  border-radius: 14px;
  padding: 1.75rem;
}
.mkt-detail-section h2 {
  font-size: 1.2rem;
  margin: 0 0 1rem;
  font-weight: 700;
}
.mkt-detail-section p { line-height: 1.55; margin: 0; }
.mkt-detail-section-empty {
  opacity: 0.5;
  font-style: italic;
}
.mkt-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .mkt-header-inner { flex-wrap: wrap; gap: 0.75rem; padding: 0.65rem 1rem; }
  .mkt-nav { gap: 1rem; margin-left: 0; width: 100%; justify-content: center; order: 3; }
  .mkt-back-home { display: none; }
  .mkt-plans { grid-template-columns: 1fr; max-width: 480px; }
  .mkt-register-card { padding: 1.5rem; }
  .mkt-detail-hero { grid-template-columns: 80px 1fr; }
  .mkt-detail-visit { grid-column: 1 / -1; text-align: center; }
  .mkt-detail-body { grid-template-columns: 1fr; }
}

/* ============================================================
   CATEGORÍAS EXPANDIBLES (replica del antiguo con sub-cats)
   ============================================================ */
.mkt-cat-item { position: relative; }
.mkt-cat-btn {
  display: flex !important;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0 !important;
  width: 100%;
}
.mkt-cat-arrow {
  margin-left: auto;
  margin-right: 0.3rem;
  font-size: 1rem;
  font-weight: 700;
  opacity: 0.45;
  transition: transform 0.15s;
  display: inline-block;
}
.mkt-cat-item.has-subs.is-open > .mkt-cat-btn .mkt-cat-arrow {
  transform: rotate(90deg);
  opacity: 0.9;
}
.mkt-cat-item .count {
  margin-left: auto;
  font-size: 0.75rem;
  opacity: 0.5;
  font-weight: 400;
}
.mkt-cat-item.has-subs .mkt-cat-arrow + .count { margin-left: 0; }

.mkt-subcats {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
}
.mkt-cat-item.has-subs.is-open > .mkt-subcats {
  max-height: 800px;
  padding: 0.25rem 0 0.5rem 0.85rem;
  border-left: 1px solid rgba(20,24,31,0.08);
  margin: 0.15rem 0 0.35rem 0.3rem;
}
.mkt-subcat-btn {
  display: block !important;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 0.3rem 0 !important;
  font-family: inherit;
  font-size: 0.86rem;
  color: var(--ink);
  opacity: 0.7;
  cursor: pointer;
  transition: color 0.15s, opacity 0.15s;
}
.mkt-subcat-btn:hover { color: var(--coral); opacity: 1; }
.mkt-subcat-btn.is-active {
  color: var(--coral);
  font-weight: 600;
  opacity: 1;
}

/* ============================================================
   OVERRIDES v7 — coherencia con la web (17 jun)
   Quitar header coral propio (usamos nav unificado)
   Cards más limpias, sin pill dominio fea, hover suave
   ============================================================ */

/* Ocultar header coral propio si quedara algún rastro */
.mkt-header { display: none !important; }

/* Cards: hover más suave (no borde coral grueso) */
.mkt-card {
  transition: transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s, border-color 0.18s;
}
.mkt-card:hover {
  transform: translateY(-3px);
  border-color: rgba(20,24,31,0.16) !important;
  box-shadow: 0 14px 30px rgba(20,24,31,0.08) !important;
}
.mkt-card:hover h4 { color: var(--coral); }

/* Quitar pill dominio coral fea — solo mostrar si HAY description o categoría real */
.mkt-card-bottom .mkt-card-badge {
  display: none;
}
.mkt-card.has-real-badge .mkt-card-bottom .mkt-card-badge {
  display: inline-block;
}

/* Espacio más generoso en cards */
.mkt-card {
  padding: 1.5rem 1.25rem !important;
  gap: 0.75rem !important;
  min-height: 220px !important;
}
.mkt-card-logo {
  width: 64px !important;
  height: 64px !important;
  margin-bottom: 0.25rem;
}
.mkt-card h4 {
  font-size: 1.05rem !important;
}

/* Estrellas más sutiles */
.mkt-card-rating { font-size: 0.85rem !important; }

/* Hero menos pesado, más coherente con el resto */
.mkt-hero {
  background: var(--cream);
  padding: 3.5rem 0 2rem !important;
}
.mkt-hero h1 {
  font-size: clamp(1.85rem, 3.6vw, 2.5rem) !important;
}

/* Sidebar más espacio */
.mkt-sidebar { padding-right: 0.5rem; }

/* === MOBILE: nav-unificado en móvil tiene hamburguesa, así que la sidebar va arriba === */
@media (max-width: 900px) {
  .mkt-card { padding: 1.25rem 1rem !important; min-height: auto !important; }
  .mkt-card-logo { width: 56px !important; height: 56px !important; }
}

/* ============================================================
   UX FIXES v8 (17 jun 2026)
   Quitar fakes, hover suave, logos uniformes, hero compacto
   ============================================================ */

/* === FIX 6: Hero compacto === */
.mkt-hero { padding: 2.5rem 0 1.5rem !important; }
.mkt-hero-title h1 {
  font-size: clamp(1.6rem, 3vw, 2.1rem) !important;
  letter-spacing: -0.02em;
}
.mkt-count {
  font-size: 0.88rem !important;
  margin-top: 0.4rem !important;
}
.mkt-cta-row span { font-size: 0.88rem !important; }
.mkt-cta-row .btn { font-size: 0.88rem !important; padding: 0.55rem 1.1rem !important; }

/* === FIX 5: Logos cream uniforme (no hue por hash) === */
.mkt-card-logo {
  background: var(--cream) !important;
  color: var(--ink) !important;
  width: 56px !important;
  height: 56px !important;
  border: 1px solid rgba(20,24,31,0.06);
}
.mkt-card-logo .mkt-card-initial {
  font-size: 1.2rem !important;
  color: var(--ink) !important;
  opacity: 0.4;
}
.mkt-card-logo img {
  background: #fff;
}

/* === FIX 2: Hover suave (no coral en texto) === */
.mkt-card {
  padding: 1.5rem 1.25rem !important;
  min-height: 180px !important;
  gap: 0.65rem !important;
}
.mkt-card:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(20,24,31,0.18) !important;
  box-shadow: 0 10px 22px rgba(20,24,31,0.06) !important;
}
.mkt-card:hover h4 { color: var(--ink) !important; }
.mkt-card:hover .mkt-card-plus { display: none; }

/* === FIX 4: Quitar "+" innecesario === */
.mkt-card-plus { display: none !important; }

/* === FIX 3: Estilo "Verificado" sutil (sustituye estrellas fake) === */
.mkt-card-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgb(30, 120, 70);
  background: rgba(30, 120, 70, 0.08);
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
}
.mkt-card-verified .verified-check {
  font-weight: 800;
  font-size: 0.85rem;
}

/* Ocultar las estrellas viejas */
.mkt-card-rating { display: none !important; }

/* === FIX 1: Cards más coherentes con o sin descripción === */
.mkt-card h4 {
  font-size: 0.98rem !important;
  margin: 0.2rem 0 0 !important;
  text-align: center;
}
.mkt-card-desc {
  font-size: 0.82rem !important;
  line-height: 1.4 !important;
  opacity: 0.7 !important;
  text-align: center;
  -webkit-line-clamp: 3 !important;
}
.mkt-card-domain-sub {
  font-size: 0.78rem !important;
  color: var(--ink);
  opacity: 0.45;
  margin: 0;
  text-align: center;
}
.mkt-card-bottom {
  margin-top: auto !important;
  flex-direction: row !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem !important;
}
.mkt-card-badge {
  background: rgba(20,24,31,0.06) !important;
  color: var(--ink) !important;
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  padding: 0.22rem 0.65rem !important;
  text-transform: capitalize !important;
  letter-spacing: 0 !important;
}

/* === Sidebar: ubicación más legible === */
.mkt-filter-block select {
  font-size: 0.92rem !important;
  font-weight: 500 !important;
}
.mkt-filter-block input[type="search"] {
  font-size: 0.88rem !important;
}

/* === Cards más juntas en desktop ancho === */
.mkt-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
  gap: 0.9rem !important;
}

/* === Mobile: 2 cols en lugar de 1 cuando se pueda === */
@media (max-width: 700px) {
  .mkt-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.6rem !important; }
  .mkt-card { padding: 1rem 0.75rem !important; min-height: 150px !important; }
  .mkt-card-logo { width: 44px !important; height: 44px !important; }
  .mkt-card h4 { font-size: 0.88rem !important; }
}
@media (max-width: 380px) {
  .mkt-grid { grid-template-columns: 1fr !important; }
}

/* ============================================================
   HOTFIX v8.1 — grid roto + sidebar vacía (17 jun 2026)
   Override ÚLTIMO con max especificidad
   ============================================================ */

/* Grid responsive limpio (sobrescribe todas las reglas anteriores) */
section.mkt-main .mkt-content .mkt-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0.85rem !important;
  width: 100%;
}
@media (max-width: 1200px) {
  section.mkt-main .mkt-content .mkt-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 900px) {
  section.mkt-main .mkt-content .mkt-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 480px) {
  section.mkt-main .mkt-content .mkt-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Card width controlled por el grid, no por la card */
section.mkt-main .mkt-card {
  width: auto !important;
  min-width: 0;
}

/* ============================================================
   MULTI-RFQ v9 — checkbox + barra flotante + modal
   ============================================================ */

/* Card: layout flex column con CTA abajo */
.mkt-card {
  position: relative;
  display: flex !important;
  flex-direction: column !important;
  text-decoration: none;
  color: inherit;
}
.mkt-card.is-selected {
  border-color: var(--coral) !important;
  background: rgba(242,107,91,0.04) !important;
}

.mkt-card-check {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  width: 22px;
  height: 22px;
  cursor: pointer;
  z-index: 2;
}
.mkt-card-check input { position: absolute; opacity: 0; cursor: pointer; width: 100%; height: 100%; margin: 0; }
.mkt-check-mark {
  display: block;
  width: 22px;
  height: 22px;
  background: #fff;
  border: 1.5px solid rgba(20,24,31,0.25);
  border-radius: 6px;
  position: relative;
  transition: all 0.15s;
}
.mkt-card-check:hover .mkt-check-mark { border-color: var(--coral); }
.mkt-card-check input:checked + .mkt-check-mark {
  background: var(--coral);
  border-color: var(--coral);
}
.mkt-card-check input:checked + .mkt-check-mark::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
}

/* Tier badge */
.mkt-card-tier-row {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 1;
}
.mkt-tier-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.mkt-tier-badge.tier-boost {
  background: rgba(242,107,91,0.12);
  color: var(--coral);
}
.mkt-tier-badge.tier-expert {
  background: rgb(30,120,70);
  color: #fff;
}

/* Clickable area */
.mkt-card-clickable {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0.5rem !important;
  text-decoration: none !important;
  color: inherit !important;
  padding-top: 1.5rem;
  flex: 1;
}
.mkt-card-meta {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.65;
  text-align: center;
  line-height: 1.3;
}

/* CTA "Añadir al presupuesto" */
.mkt-card-cta {
  margin-top: 0.85rem;
  background: var(--ink);
  color: var(--cream);
  border: 0;
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background 0.15s, color 0.15s;
  width: 100%;
}
.mkt-card-cta:hover { background: var(--coral); }
.mkt-card.is-selected .mkt-card-cta { background: var(--coral); color: #fff; }

/* Barra flotante RFQ */
.mkt-rfq-bar {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 200;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  padding: 0.65rem 0.65rem 0.65rem 1.5rem;
  box-shadow: 0 18px 45px rgba(20,24,31,0.25);
  transition: transform 0.25s cubic-bezier(.4,0,.2,1);
  min-width: 320px;
  max-width: calc(100vw - 2rem);
}
.mkt-rfq-bar.is-visible { transform: translateX(-50%) translateY(0); }
.mkt-rfq-bar-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.mkt-rfq-bar-info {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  flex: 1;
}
.mkt-rfq-bar-info .mkt-rfq-count {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--coral);
}
.mkt-rfq-bar-info .mkt-rfq-count-label {
  font-size: 0.88rem;
  opacity: 0.85;
}
.mkt-rfq-bar-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.mkt-rfq-clear {
  background: transparent;
  border: 0;
  color: rgba(255,255,255,0.55);
  font-family: inherit;
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
}
.mkt-rfq-clear:hover { color: var(--cream); }
.mkt-rfq-cta {
  padding: 0.5rem 1.2rem !important;
  font-size: 0.88rem !important;
}

/* Modal RFQ */
#mkt-rfq-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
#mkt-rfq-modal .mkt-rfq-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,24,31,0.6);
  backdrop-filter: blur(4px);
  animation: gqFade 0.2s ease;
}
#mkt-rfq-modal .mkt-rfq-modal-card {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 18px;
  padding: 2rem 2rem 1.75rem;
  box-shadow: 0 28px 60px rgba(20,24,31,0.35);
  z-index: 1;
  animation: gqSlide 0.25s ease;
}
#mkt-rfq-modal h2 {
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
  font-weight: 700;
}
#mkt-rfq-modal h2 em {
  color: var(--coral);
  font-style: normal;
  font-weight: 800;
}
#mkt-rfq-modal .mkt-rfq-intro {
  font-size: 0.92rem;
  opacity: 0.7;
  margin: 0 0 1.5rem;
  line-height: 1.4;
}
.mkt-rfq-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px; height: 32px;
  background: rgba(20,24,31,0.06);
  border: 0;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
}
.mkt-rfq-modal-close:hover { background: rgba(20,24,31,0.12); }
.mkt-rfq-selected { margin-bottom: 1.5rem; }
.mkt-rfq-selected h3 {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.55;
  margin: 0 0 0.6rem;
  font-weight: 600;
}
.mkt-rfq-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.mkt-rfq-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(242,107,91,0.1);
  color: var(--coral);
  padding: 0.35rem 0.4rem 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
}
.mkt-rfq-remove {
  background: var(--coral);
  color: #fff;
  border: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
  line-height: 1;
  font-weight: 600;
}
.mkt-rfq-form { display: flex; flex-direction: column; gap: 1rem; }
.mkt-rfq-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}
.mkt-rfq-form label .opt {
  font-weight: 400;
  opacity: 0.55;
  font-size: 0.78rem;
}
.mkt-rfq-form input, .mkt-rfq-form select, .mkt-rfq-form textarea {
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(20,24,31,0.15);
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
}
.mkt-rfq-form input:focus, .mkt-rfq-form select:focus, .mkt-rfq-form textarea:focus {
  outline: none; border-color: var(--coral);
}
.mkt-rfq-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.mkt-rfq-success { text-align: center; padding: 1rem 0; }
.mkt-rfq-success h2 { color: var(--coral); }

@media (max-width: 480px) {
  .mkt-rfq-bar { min-width: 0; width: calc(100vw - 2rem); }
  .mkt-rfq-bar-inner { gap: 0.6rem; }
  .mkt-rfq-bar-info .mkt-rfq-count-label { font-size: 0.78rem; }
  .mkt-rfq-cta { padding: 0.45rem 0.85rem !important; font-size: 0.82rem !important; }
  #mkt-rfq-modal .mkt-rfq-modal-card { padding: 1.5rem 1.25rem; }
  .mkt-rfq-row { grid-template-columns: 1fr; }
}

/* ============================================================
   v10 — FIX cards: logo grande, CTA pill, sin badge falso, respira
   Override final que toma precedencia sobre v6/v7/v8/v8.1/v9
   ============================================================ */

section.mkt-main .mkt-content .mkt-card {
  padding: 1.5rem 1.25rem 1.25rem !important;
  min-height: 220px !important;
  max-height: 240px;
  background: var(--cream) !important;
  border: 1px solid rgba(20,24,31,0.08) !important;
  border-radius: 14px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  position: relative;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
section.mkt-main .mkt-content .mkt-card:hover {
  border-color: rgba(20,24,31,0.18) !important;
  box-shadow: 0 6px 18px rgba(20,24,31,0.08) !important;
  transform: translateY(-2px);
}
section.mkt-main .mkt-content .mkt-card.is-selected {
  border-color: var(--coral) !important;
  background: rgba(242,107,91,0.04) !important;
}

/* Logo más grande y centrado */
section.mkt-main .mkt-content .mkt-card .mkt-card-logo {
  width: 72px !important;
  height: 72px !important;
  border-radius: 50% !important;
  background: #fff !important;
  border: 1px solid rgba(20,24,31,0.08) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  margin: 0 auto !important;
}
section.mkt-main .mkt-content .mkt-card .mkt-card-logo img {
  max-width: 70% !important;
  max-height: 70% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}
section.mkt-main .mkt-content .mkt-card .mkt-card-logo .mkt-card-initial {
  font-size: 1.6rem !important;
  font-weight: 700 !important;
  color: rgba(20,24,31,0.4) !important;
}

/* Clickable: stack logo + nombre + meta, ocupa espacio disponible */
section.mkt-main .mkt-content .mkt-card .mkt-card-clickable {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0.5rem !important;
  text-decoration: none !important;
  color: inherit !important;
  flex: 1;
  padding-top: 0.5rem;
}
section.mkt-main .mkt-content .mkt-card h4 {
  font-size: 1rem !important;
  font-weight: 700 !important;
  margin: 0.25rem 0 0 !important;
  text-align: center !important;
  color: var(--ink) !important;
  line-height: 1.2 !important;
}
section.mkt-main .mkt-content .mkt-card .mkt-card-meta {
  font-size: 0.78rem !important;
  opacity: 0.55 !important;
  text-align: center !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}

/* CTA pill compacto, 1 línea */
section.mkt-main .mkt-content .mkt-card-cta {
  margin-top: 0.85rem !important;
  background: transparent !important;
  color: var(--ink) !important;
  border: 1.5px solid rgba(20,24,31,0.15) !important;
  padding: 0.5rem 0.75rem !important;
  border-radius: 999px !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  width: 100% !important;
  white-space: nowrap !important;
  transition: all 0.15s !important;
  font-family: 'Poppins', sans-serif !important;
}
section.mkt-main .mkt-content .mkt-card-cta:hover {
  border-color: var(--coral) !important;
  color: var(--coral) !important;
}
section.mkt-main .mkt-content .mkt-card.is-selected .mkt-card-cta {
  background: var(--coral) !important;
  color: #fff !important;
  border-color: var(--coral) !important;
}

/* Checkbox arriba izquierda */
section.mkt-main .mkt-content .mkt-card-check {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  width: 20px;
  height: 20px;
  z-index: 3;
}

/* Tier badge solo si existe (free no muestra nada) */
section.mkt-main .mkt-content .mkt-card-tier-row {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
}

/* ============================================================
   v12 — Estructura como el antiguo: lateral desde arriba +
   titulo/CTAs dentro de la columna de contenido. Sidebar NO sticky
   (la lista de categorias se cortaba en Internacional).
   ============================================================ */

/* La seccion arranca justo bajo el nav, sin hero full-width */
section.mkt-main {
  padding-top: 1.5rem !important;
}

/* Sidebar en flujo normal: se ve la lista entera de categorias */
.mkt-sidebar {
  position: static !important;
  top: auto !important;
}

/* Cabecera (titulo + CTAs) ahora dentro de la columna derecha,
   alineada arriba con el primer filtro del lateral */
.mkt-hero-inline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.mkt-hero-inline .mkt-hero-title h1 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
}
.mkt-hero-inline .mkt-count {
  margin: 0.4rem 0 0;
  font-size: 0.88rem;
  opacity: 0.55;
}
/* CTAs: dos columnas lado a lado, etiqueta pequena encima del boton (como el antiguo) */
.mkt-hero-inline .mkt-hero-ctas {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.85rem;
}
.mkt-cta-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.mkt-cta-col span {
  font-size: 0.8rem;
  color: var(--ink);
  opacity: 0.6;
  white-space: nowrap;
}
.mkt-cta-col .btn {
  width: 100%;
  justify-content: center;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .mkt-hero-inline { flex-direction: column; gap: 1.25rem; align-items: stretch; }
}

/* ============================================================
   v11 — Card estructura ANTIGUA (logo+nombre, desc, pills, rating)
   sobre estilo actual. Override final (precede a v10).
   ============================================================ */

/* Card: blanca sobre el beige para que respire, texto a la izquierda */
section.mkt-main .mkt-content .mkt-card {
  background: #fff !important;
  border: 1px solid rgba(20,24,31,0.08) !important;
  border-radius: 16px !important;
  padding: 1.15rem 1.15rem 1.1rem !important;
  min-height: 150px !important;
  max-height: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  text-align: left !important;
  box-shadow: 0 1px 2px rgba(20,24,31,0.04);
}
section.mkt-main .mkt-content .mkt-card:hover {
  border-color: rgba(20,24,31,0.14) !important;
  box-shadow: 0 10px 26px rgba(20,24,31,0.09) !important;
  transform: translateY(-3px);
}

/* Esquina sup. derecha: tier badge o check verificado */
section.mkt-main .mkt-content .mkt-card-corner {
  position: absolute;
  top: 0.8rem;
  right: 0.85rem;
  z-index: 2;
}
.mkt-card-verified-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #2E7CF6;
  color: #fff;
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 800;
}

/* Tic simple rojo = Gupi Expert (tooltip nativo al hover) */
.mkt-card-tic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--coral, #F26B5B);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  cursor: help;
}

/* Checkbox arriba izquierda (RFQ) — se mantiene */
section.mkt-main .mkt-content .mkt-card-check {
  top: 0.85rem;
  left: 0.85rem;
}

/* Cabecera: logo pequeño + nombre en fila */
section.mkt-main .mkt-content .mkt-card .mkt-card-clickable {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 0.55rem !important;
  flex: 1;
  padding-top: 1.6rem !important;
  text-align: left !important;
}
.mkt-card-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
section.mkt-main .mkt-content .mkt-card .mkt-card-head .mkt-card-logo {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  border-radius: 9px !important;
  margin: 0 !important;
  background: var(--cream) !important;
  border: 1px solid rgba(20,24,31,0.06) !important;
}
section.mkt-main .mkt-content .mkt-card .mkt-card-head .mkt-card-logo .mkt-card-initial {
  font-size: 1.05rem !important;
}
.mkt-card-head-text { display: flex; flex-direction: column; gap: 0.1rem; min-width: 0; }
section.mkt-main .mkt-content .mkt-card .mkt-card-head h4 {
  font-size: 1.02rem !important;
  font-weight: 700 !important;
  margin: 0 !important;
  text-align: left !important;
  line-height: 1.2 !important;
  padding-right: 1.4rem;
}
section.mkt-main .mkt-content .mkt-card .mkt-card-sub {
  margin: 0 !important;
  font-size: 0.78rem !important;
  opacity: 0.5 !important;
  text-align: left !important;
  line-height: 1.3 !important;
}

/* Descripción: 4 líneas, gris, ocupa el hueco (como el antiguo) */
section.mkt-main .mkt-content .mkt-card .mkt-card-desc {
  display: -webkit-box !important;
  -webkit-line-clamp: 4 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  font-size: 0.85rem !important;
  line-height: 1.5 !important;
  opacity: 0.68 !important;
  margin: 0 !important;
  text-align: left !important;
}

/* Pie: pills categoría arriba, valoración debajo, ambos a la izquierda (como el antiguo) */
.mkt-card-foot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  margin-top: 0.9rem;
}
.mkt-card-tags {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-wrap: wrap;
  overflow: hidden;
}
.mkt-card-rating .rating-n { opacity: 0.6; margin-left: 0.1rem; }
.mkt-card-tag {
  background: rgba(20,24,31,0.06);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
}
.mkt-card-tag-more { opacity: 0.6; }
section.mkt-main .mkt-content .mkt-card-rating {
  display: inline-flex !important;
  align-items: center;
  gap: 0.22rem;
  font-size: 0.8rem;
  opacity: 0.55;
  white-space: nowrap;
}
section.mkt-main .mkt-content .mkt-card-rating .star { color: #FFC93C; font-size: 0.9rem; line-height: 1; }

/* CTA abajo, ancho completo (HARD RULE: CTA abajo, cards mismo tamaño) */
section.mkt-main .mkt-content .mkt-card-cta {
  margin-top: 0.85rem !important;
  width: 100% !important;
  text-align: center;
}

/* ============================================================
   v11 — FONDO con profundidad (provisional · Pol elige A/B/C)
   OPCION B aplicada: degradado suave + glow coral muy sutil.
   Para cambiar de opción, edita solo este bloque.
   ============================================================ */
.mkt-hero {
  background:
    radial-gradient(900px 320px at 88% -10%, rgba(242,107,91,0.10), transparent 60%),
    linear-gradient(180deg, var(--cream-soft) 0%, var(--cream) 100%) !important;
}
.mkt-main {
  background:
    radial-gradient(700px 400px at 100% 0%, rgba(242,107,91,0.05), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 100%) !important;
  border-top: 1px solid rgba(20,24,31,0.05) !important;
}

/* ============================================================
   v14 — Botones cabecera un pelin mas pequenos + logos sin marco
   ============================================================ */

/* CTAs: botones mas compactos */
.mkt-hero-inline .mkt-cta-col .btn {
  padding: 0.6rem 1.4rem !important;
  font-size: 0.9rem !important;
}

/* Logos en cards: sin marco, solo el logo bien visible */
section.mkt-main .mkt-content .mkt-card .mkt-card-head .mkt-card-logo {
  background: transparent !important;
  border: 0 !important;
  border-radius: 6px !important;
  overflow: visible !important;
}
section.mkt-main .mkt-content .mkt-card .mkt-card-head .mkt-card-logo img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 0 !important;
  background: transparent !important;
}
