/* ── web-sections.css — Base styles for layout builder sections ── */
/* All colors use CSS variables from web.css / web-themes.css */

/* ── Section Base ── */
.wt-section {
  width: 100%;
  position: relative;
}
.wt-section-wrapper {
  position: relative;
  width: 100%;
}

/* ── Editor Mode (when iframe loaded with ?_editor=1) ── */
body.web-editor-mode .wt-section-wrapper {
  cursor: pointer;
  transition: outline .15s ease;
}
body.web-editor-mode .wt-section-wrapper:hover {
  outline: 2px dashed #3b82f6;
  outline-offset: -2px;
}
body.web-editor-mode .wt-section-wrapper:hover::before {
  content: attr(data-section-name);
  position: absolute;
  top: 0;
  left: 0;
  background: #3b82f6;
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  z-index: 100;
  border-radius: 0 0 6px 0;
  font-family: -apple-system,system-ui,sans-serif;
  pointer-events: none;
}
body.web-editor-mode .wt-section-wrapper.wt-section-selected {
  outline: 3px solid #3b82f6;
  outline-offset: -3px;
}
body.web-editor-mode .wt-section-wrapper.wt-section-selected::before {
  content: attr(data-section-name);
  position: absolute;
  top: 0;
  left: 0;
  background: #3b82f6;
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  z-index: 100;
  border-radius: 0 0 6px 0;
  font-family: -apple-system,system-ui,sans-serif;
  pointer-events: none;
}
/* Disable interactive elements visually in editor mode */
body.web-editor-mode a,
body.web-editor-mode button,
body.web-editor-mode input,
body.web-editor-mode form {
  pointer-events: none;
}
/* Re-enable pointer-events on the section wrapper itself for click capture */
body.web-editor-mode .wt-section-wrapper {
  pointer-events: auto;
}
.wt-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.wt-section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--web-heading, var(--web-text, #111));
  margin-bottom: 8px;
  text-align: center;
}
.wt-section-subtitle {
  font-size: 1.05rem;
  color: var(--web-muted, #666);
  text-align: center;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Announcement Bar ── */
.wt-section-announcement-bar {
  /* v15p mobile-fix: padding right reservado para que el botón close NO se
     superponga con el texto en mobile (owner OS Taller 2026-05-17). */
  padding: 10px 48px 10px 16px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 50;
  position: relative;
}
.wt-announce-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 1280px;
  margin: 0 auto;
}
.wt-announce-text {
  /* v15p mobile-fix: permitir wrap pero centrar — antes texto largo +
     close inline rompían en iPhone porque el X aparecía en medio del texto. */
  flex: 1 1 auto;
  min-width: 0;
}
.wt-announce-close {
  /* v15p mobile-fix: posicionar absoluto a la derecha en vez de inline
     dentro del flex. Touch target 32×32 mínimo. Antes era inline gap:12px
     → en mobile con text-wrap el botón quedaba en medio del texto. */
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: none;
  color: inherit;
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0.7;
  padding: 4px 8px;
  line-height: 1;
  border-radius: 4px;
  min-width: 32px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wt-announce-close:hover { opacity: 1; background: rgba(255,255,255,.2); }

/* ── Hero Fullscreen ── */
/* v15fn (2026-05-30) — research 2026: usar `svh` para hero (evita CLS por
   address bar resize iOS Safari). Fallback `vh` para Safari <16.4.
   NUNCA `dvh` en hero porque el resize del address bar causa layout shift
   visible al user. */
.wt-section-hero-fullscreen {
  min-height: 100vh; /* fallback Safari <16.4 */
  min-height: 100svh; /* moderno: pequeño viewport, NO resize con address bar */
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #fff;
  text-align: center;
}

/* ── Hero Fullscreen — modo "contain" (mostrar imagen completa sin recortar) ── */
/* v5 (2026-05-07c) — Origen: cliente Guantes Py reportó que su banner diseñado
   (con logo + texto + iconos en bordes) aparecia recortado top y bottom porque
   `min-height: 100vh` + `background-size: cover` recorta cuando la aspect-ratio
   de la imagen no coincide con el viewport.

   Activación universal vía wrapper data-attr (sin tocar 33 themes individuales).
   El JS post-mount (WebThemeBase.applyHeroAspectRatio) calcula el aspect-ratio
   natural de la imagen y lo aplica inline para evitar bandas de color. */
/* v5.2 (2026-05-07f): selector universal para cubrir hero-fullscreen,
   hero-carousel (.wt-hero-slide) y video-hero (.wt-v2-videohero). Same
   declarations aplicadas vía coma-list. */
.wt-section-wrapper[data-image-fit="contain"] .wt-section-hero-fullscreen,
.wt-section-wrapper[data-image-fit="contain"] .wt-hero-slide,
.wt-section-wrapper[data-image-fit="contain"] .wt-v2-videohero,
.wt-section-wrapper[data-image-fit="contain"] .wt-section-video-hero {
  /* `!important` necesario porque las reglas mobile @media (max-width: 768px)
     más abajo (HERO FALLBACK GLOBAL) tienen `background-size: cover` y
     `min-height: clamp(...) !important` que ganarían por orden de cascada. */
  background-size: contain !important;
  background-color: var(--web-primary, #1a1a2e);
  min-height: auto !important;
  /* `display: block` (override del flex base) para que aspect-ratio mande
     sobre el contenedor sin que los flex-children fuercen altura mínima.
     `position: relative` para que overlay/content absolutos se anclen acá. */
  display: block !important;
  position: relative;
  /* Fallback aspect-ratio si JS aún no determinó el natural — banner típico 16:5.
     applyHeroAspectRatio() lo sobrescribe inline con el natural una vez carga. */
  aspect-ratio: 16 / 5;
  /* v15ad (2026-05-17): asegurar altura mínima legible para que el texto del hero
     no quede recortado en mobile cuando aspect-ratio 16/5 sobre viewport ~375px
     da ~117px de altura (insuficiente para h1+p+CTA). El min-height permite que
     el wrapper crezca cuando el contenido lo necesita sin romper landscape. */
  min-height: clamp(280px, 38vw, 520px);
}
/* Hotfix v5.1 (2026-05-07d): el contenido interno (overlay + content) DEBE
   posicionarse absoluto en modo contain, sino los flex-children con padding
   y h1/p/CTA reclaman altura que excede el aspect-ratio del section.
   v5.2: incluye .wt-hero-slide-overlay y .wt-hero-slide-content del carrusel. */
.wt-section-wrapper[data-image-fit="contain"] .wt-section-hero-fullscreen > .wt-hero-overlay,
.wt-section-wrapper[data-image-fit="contain"] .wt-hero-slide > .wt-hero-slide-overlay,
.wt-section-wrapper[data-image-fit="contain"] .wt-v2-videohero > .wt-v2-videohero-overlay {
  position: absolute !important;
  inset: 0 !important;
  mix-blend-mode: multiply;
  opacity: 0.15 !important;
  pointer-events: none;
}
.wt-section-wrapper[data-image-fit="contain"] .wt-section-hero-fullscreen > .wt-hero-content,
.wt-section-wrapper[data-image-fit="contain"] .wt-hero-slide > .wt-hero-slide-content,
.wt-section-wrapper[data-image-fit="contain"] .wt-v2-videohero > .wt-v2-videohero-content {
  position: absolute !important;
  inset: 0 !important;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.wt-section-wrapper[data-image-fit="contain"] .wt-section-hero-fullscreen > .wt-hero-content > *,
.wt-section-wrapper[data-image-fit="contain"] .wt-hero-slide > .wt-hero-slide-content > *,
.wt-section-wrapper[data-image-fit="contain"] .wt-v2-videohero > .wt-v2-videohero-content > * {
  pointer-events: auto;
}
/* En modo contain, el contenido (titulo/subtitulo/CTA) solo se muestra si el
   operador realmente lo configuró. Si el banner ya tiene texto pintado dentro
   de la imagen, el operador deja title/subtitle/ctaText vacios. */
.wt-hero-overlay {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.4;
  z-index: 1;
}
.wt-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
  box-sizing: border-box;
  padding: 40px 24px;
}
.wt-hero-logo {
  max-width: 200px;
  max-height: 120px;
  margin: 0 auto 24px;
  display: block;
}
.wt-hero-title {
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  max-width: 100%;
  box-sizing: border-box;
}
.wt-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 32px;
  opacity: 0.9;
  font-weight: 400;
  overflow-wrap: anywhere;
  max-width: 100%;
  box-sizing: border-box;
}
.wt-hero-btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.wt-hero-btn-primary {
  background: var(--web-primary, #2563eb);
  color: #fff;
  border-color: var(--web-primary, #2563eb);
}
.wt-hero-btn-primary:hover { filter: brightness(1.1); transform: translateY(-2px); }
.wt-hero-btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.wt-hero-btn-outline:hover { background: rgba(255,255,255,0.15); }
.wt-hero-btn-white {
  background: #fff;
  color: #111;
  border-color: #fff;
}
.wt-hero-btn-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); }
/* v15ad (2026-05-17): variante WhatsApp para CTAs de Cotización. #25D366 es la
   única excepción permitida de hex hardcoded en el DS §15 (color oficial de WA). */
.wt-hero-btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.wt-hero-btn-whatsapp:hover { background: #1ebd5a; transform: translateY(-2px); }

/* ── Hero Carousel ── */
.wt-section-hero-carousel {
  position: relative;
  overflow: hidden;
}
.wt-section-hero-carousel .wt-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}
.wt-hero-slide {
  min-width: 100%;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  text-align: center;
}
.wt-hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.5));
}
.wt-hero-slide-content {
  position: relative;
  z-index: 2;
  padding: 40px 24px;
  max-width: 700px;
}

/* ── Carousel Base ── */
.wt-carousel {
  position: relative;
  overflow: hidden;
}
.wt-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}
.wt-carousel-prev, .wt-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(255,255,255,0.9);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: all 0.2s;
  color: #333;
}
.wt-carousel-prev { left: 12px; }
.wt-carousel-next { right: 12px; }
.wt-carousel-prev:hover, .wt-carousel-next:hover {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.wt-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px 0;
}
.wt-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}
.wt-carousel-dot.active {
  background: var(--web-primary, #2563eb);
  width: 28px;
  border-radius: 5px;
}

/* ── Promo Banners ── */
.wt-section-promo-banners {
  padding: 32px 0;
}
.wt-promo-grid {
  display: grid;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.wt-promo-grid[data-cols="2"] { grid-template-columns: repeat(2, 1fr); }
.wt-promo-grid[data-cols="3"] { grid-template-columns: repeat(3, 1fr); }
.wt-promo-grid[data-cols="4"] { grid-template-columns: repeat(4, 1fr); }
.wt-promo-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  /* v6.1 (2026-05-08) — defense-in-depth con !important.
     User reportó que en portrait iPhone seguía gigante tras v6 sin !important.
     Causa probable: cache browser + ninguna regla específica adicional con
     mayor especificidad pisaba (verificado), pero defendemos contra futuros
     overrides de themes/custom CSS de tenant. aspect-ratio + max-height
     ambos con !important para que sea irreversible. */
  aspect-ratio: 16 / 9 !important;
  min-height: 0 !important;
  max-height: 220px !important;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease;
}
/* En desktop con 3+ columnas las cards son chicas, dejarlas casi cuadradas
   queda mejor visualmente — sobreescribir aspect-ratio sólo cuando no hay
   colapso a 1 columna. */
@media (min-width: 769px) {
  .wt-promo-grid[data-cols="3"] .wt-promo-card,
  .wt-promo-grid[data-cols="4"] .wt-promo-card {
    aspect-ratio: 4 / 3 !important;
    max-height: 280px !important;
  }
}
.wt-promo-card:hover { transform: translateY(-4px); }
.wt-promo-card-content {
  padding: 20px;
  position: relative;
  z-index: 2;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}
.wt-promo-card-title {
  font-size: 1.1rem;
  font-weight: 700;
}

/* ── Products Section ── */
.wt-section-products-featured,
.wt-section-products-brand,
.wt-section-best-sellers {
  padding: 48px 0;
}
.wt-products-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.wt-products-tab {
  padding: 8px 20px;
  border: 2px solid var(--web-line, #ddd);
  border-radius: 50px;
  background: transparent;
  color: var(--web-text, #333);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.95rem;
}
.wt-products-tab.active {
  background: var(--web-primary, #2563eb);
  color: #fff;
  border-color: var(--web-primary, #2563eb);
}
.wt-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.wt-product-card {
  background: var(--web-card, #fff);
  border: 1px solid var(--web-line, #eee);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}
.wt-product-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.wt-product-img {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--web-surface, #f8f9fa);
  overflow: hidden;
}
.wt-product-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}
.wt-product-card:hover .wt-product-img img { transform: scale(1.05); }
.wt-product-img-placeholder { color: var(--web-muted, #ccc); }
.wt-product-info {
  padding: 14px;
}
.wt-product-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--web-text, #111);
  margin-bottom: 6px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wt-product-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--web-primary, #2563eb);
}

/* ── v6 (2026-05-08): Swatches preview en cards de producto ── */
.wt-product-card-with-variants {
  position: relative;
}
.wt-product-swatches {
  position: absolute;
  bottom: auto;
  left: 8px;
  display: flex;
  gap: 4px;
  padding: 4px 6px;
  background: rgba(255,255,255,0.85);
  border-radius: 12px;
  z-index: 2;
  margin-top: -28px;
}
.wt-product-swatch {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
  flex-shrink: 0;
}
.wt-product-variants-chip {
  display: inline-block;
  margin-top: 4px;
  padding: 2px 8px;
  background: var(--web-bg-alt, #f1f5f9);
  color: var(--web-muted, #64748b);
  font-size: 0.72rem;
  border-radius: 10px;
  font-weight: 600;
}

/* ── Services Grid ── */
.wt-section-services-grid {
  padding: 48px 0;
}
/* v15q (2026-05-17): services-grid usa auto-fit responsive en vez de
   cols fijas. Owner OS Premium reportó 3 servicios en grid de 4 cols
   dejaba columna vacía a la derecha. Con auto-fit, las cards siempre
   se distribuyen sin huecos y respetan min-width 260px. data-cols
   define MAX columnas (puede ser menos en viewports más chicos). */
.wt-services-grid {
  display: grid;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  justify-content: center;
}
.wt-services-grid[data-cols="2"] { grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); max-width: 800px; }
.wt-services-grid[data-cols="3"] { grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); max-width: 1100px; }
.wt-services-grid[data-cols="4"] { grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); }
.wt-service-card {
  background: var(--web-card, #fff);
  border: 1px solid var(--web-line, #eee);
  border-radius: 14px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s ease;
}
.wt-service-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.wt-service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--web-primary, #2563eb) 10%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: var(--web-primary, #2563eb);
}
.wt-service-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--web-text, #111);
  margin-bottom: 8px;
}
.wt-service-desc {
  font-size: 0.9rem;
  color: var(--web-muted, #666);
  line-height: 1.5;
}
.wt-service-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--web-primary, #2563eb);
  margin-top: 12px;
}

/* ── Services Pricing (barbershop style) ── */
.wt-section-services-pricing {
  padding: 48px 0;
}
.wt-pricing-grid {
  display: grid;
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.wt-pricing-grid[data-cols="1"] { grid-template-columns: 1fr; }
.wt-pricing-grid[data-cols="2"] { grid-template-columns: repeat(2, 1fr); }
.wt-pricing-grid[data-cols="3"] { grid-template-columns: repeat(3, 1fr); }
.wt-pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--web-card, #fff);
  border: 1px solid var(--web-line, #eee);
  border-radius: 10px;
  transition: background 0.2s;
}
.wt-pricing-item:hover {
  background: var(--web-surface, #f8f9fa);
}
/* v8 (2026-05-09): card-with-img layout — antes el wt-pricing-info colapsaba a
 * ~36px width en grid 3-cols porque el right (price+button horizontal) tomaba
 * demasiado espacio + falta de overflow-wrap rompía texto letra-por-letra
 * vertical. Solución: con imagen, right apila verticalmente (price arriba, btn
 * abajo) → libera ancho horizontal para el info. Defense-in-depth: overflow-wrap
 * + word-break en wt-pricing-name por si el nombre del servicio es muy largo. */
.wt-pricing-item-with-img {
  align-items: stretch;
}
.wt-pricing-item-with-img .wt-pricing-img {
  align-self: center;
}
.wt-pricing-info {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.wt-pricing-item-with-img .wt-pricing-right {
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
}
.wt-pricing-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--web-text, #111);
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  white-space: normal;
  max-width: 100%;
}
.wt-pricing-duration {
  font-size: 0.85rem;
  color: var(--web-muted, #666);
  margin-top: 2px;
}
.wt-pricing-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.wt-pricing-amount {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--web-primary, #2563eb);
  white-space: nowrap;
}
.wt-pricing-book-btn {
  padding: 8px 18px;
  border-radius: 50px;
  border: 2px solid var(--web-primary, #2563eb);
  background: transparent;
  color: var(--web-primary, #2563eb);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.wt-pricing-book-btn:hover {
  background: var(--web-primary, #2563eb);
  color: #fff;
}

/* ── Team Grid ── */
.wt-section-team-grid {
  padding: 48px 0;
}
.wt-team-grid {
  display: grid;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.wt-team-grid[data-cols="2"] { grid-template-columns: repeat(2, 1fr); }
.wt-team-grid[data-cols="3"] { grid-template-columns: repeat(3, 1fr); }
.wt-team-grid[data-cols="4"] { grid-template-columns: repeat(4, 1fr); }
.wt-team-grid[data-cols="5"] { grid-template-columns: repeat(5, 1fr); }
.wt-team-card {
  text-align: center;
  background: var(--web-card, #fff);
  border: 1px solid var(--web-line, #eee);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s;
}
.wt-team-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.wt-team-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--web-surface, #f0f0f0);
}
.wt-team-info {
  padding: 16px;
}
.wt-team-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--web-text, #111);
  margin-bottom: 4px;
}
.wt-team-role {
  font-size: 0.85rem;
  color: var(--web-muted, #666);
  margin-bottom: 8px;
}
.wt-team-location {
  font-size: 0.8rem;
  color: var(--web-muted, #999);
  margin-bottom: 12px;
}
.wt-team-book-btn {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  background: var(--web-primary, #2563eb);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.wt-team-book-btn:hover { filter: brightness(1.1); }

/* ── Locations / Map ── */
.wt-section-locations-map {
  padding: 48px 0;
}
.wt-locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.wt-location-card {
  background: var(--web-card, #fff);
  border: 1px solid var(--web-line, #eee);
  border-radius: 14px;
  padding: 24px;
}
.wt-location-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--web-text, #111);
  margin-bottom: 12px;
}
.wt-location-detail {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--web-muted, #666);
}
.wt-location-detail svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--web-primary, #2563eb);
}

/* ── Brands Carousel ── */
/* v6 (2026-05-08): logos PNG/JPG suelen tener fondo blanco — en tema oscuro
 * se ven como manchas blancas. Solución: cada logo va dentro de un "card"
 * blanco redondeado uniforme con padding, así se ve igual en claro y oscuro.
 * Sin filter:grayscale para que las marcas se vean reales (el filter forzaba
 * gris sobre logos ya monocromáticos generando opacidad fea). */
.wt-section-brands-carousel {
  padding: 48px 0;
  background: var(--web-surface, #f8f9fa);
  /* v15bo (2026-05-20) — Confinar al viewport. Owner OS Premium reportó:
     "carrusel de marcas no tiene límite, puedo dar scroll bastante largo a
     la derecha — debe limitarse a la pantalla actual". Sin overflow:hidden
     aquí, los logos × N concatenados (animación marquee infinita) extienden
     el ancho natural más allá del viewport, arrastrando el body entero. */
  overflow-x: hidden;
  max-width: 100vw;
  /* Aislar reflows del marquee del resto del DOM (W3C Containment L2). */
  contain: layout paint;
}
/* v15bo (2026-05-20) — Migrado desde web-theme-ecommerce.css.
   Esta regla ANTES vivía solo en el CSS del theme ecommerce → NO se cargaba
   para tenant `ospremium` (theme automotive-modern). Causa raíz del bug
   "carrusel desborda layout mobile". Solución: regla universal en
   web-sections.css que el shell server.js carga SIEMPRE para todos los themes. */
.wt-brands-scroll {
  overflow: hidden;
  padding: 20px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  /* Confinar el carrusel al viewport (defense-in-depth). */
  max-width: 100vw;
  contain: layout paint;
}
.wt-brands-track {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: wtBrandsScroll 30s linear infinite;
  /* v15bo — GPU-acelerar animación marquee + respect reduced-motion. */
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .wt-brands-track {
    animation: none;
  }
}
.wt-brand-logo {
  height: 48px;
  max-width: 160px;
  object-fit: contain;
  background: #ffffff;
  padding: 8px 14px;
  border-radius: 10px;
  box-sizing: content-box;
  opacity: 0.92;
  transition: opacity 0.25s, transform 0.25s;
  flex-shrink: 0;
  /* Preservar proporción del logo original */
  display: block;
}
.wt-brand-logo:hover {
  opacity: 1;
  transform: scale(1.04);
}

/* v15s (2026-05-17) — variantes de tamaño configurable.
   Owner OS Premium pidió "agrandar marcas, hacerse mas grande". 4 tamaños
   logo × 4 tamaños sección, controlados desde editor. */
.wt-section-brands-carousel[data-logo-size="small"] .wt-brand-logo,
.wt-section-brands-carousel[data-logo-size="small"] .wt-brand-logo-static {
  height: 36px;
  max-width: 120px;
  padding: 6px 10px;
}
.wt-section-brands-carousel[data-logo-size="large"] .wt-brand-logo,
.wt-section-brands-carousel[data-logo-size="large"] .wt-brand-logo-static {
  height: 72px;
  max-width: 220px;
  padding: 10px 18px;
  max-height: 120px !important;
}
.wt-section-brands-carousel[data-logo-size="xlarge"] .wt-brand-logo,
.wt-section-brands-carousel[data-logo-size="xlarge"] .wt-brand-logo-static {
  height: 140px;
  max-width: 380px;
  padding: 16px 26px;
  max-height: 200px !important;
}
/* v15ad (2026-05-17) — variante "auto" para 1-2 logos estáticos.
   Owner OS Premium reportó "cuadro grande, marca pequeña" con 1 sola marca.
   "auto" centra el logo grande sin marquee infinite. Default cuando length<=2. */
.wt-section-brands-carousel[data-logo-size="auto"] .wt-brand-logo,
.wt-section-brands-carousel[data-logo-size="auto"] .wt-brand-logo-static {
  height: 120px;
  max-width: 320px;
  padding: 14px 22px;
  max-height: 180px !important;
}
.wt-section-brands-carousel[data-section-size="compact"] {
  padding: 28px 0;
}
.wt-section-brands-carousel[data-section-size="large"] {
  padding: 80px 0;
}
.wt-section-brands-carousel[data-section-size="xlarge"] {
  padding: 120px 0;
}
/* v15ad: cuando hay pocos logos (data-static="true"), reducir padding XL
   para evitar "cuadro vacío gigante" alrededor de 1-2 logos. */
.wt-section-brands-carousel[data-section-size="xlarge"][data-static="true"] {
  padding: 64px 0;
}
.wt-section-brands-carousel[data-section-size="large"][data-static="true"] {
  padding: 48px 0;
}
/* v6 (2026-05-08): logos × 3 en el track (concat) → loop perfecto al -33.333%
 * (el frame final coincide visualmente con el inicio). Antes -50% generaba
 * cortes visibles cuando solo había 2 copias. */
@keyframes wtBrandsScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-33.3333%); }
}

/* ── Testimonials ── */
.wt-section-testimonials {
  padding: 48px 0;
}
.wt-testimonial-card {
  min-width: 100%;
  padding: 40px 24px;
  text-align: center;
}
.wt-testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--web-text, #333);
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.6;
}
.wt-testimonial-author {
  font-weight: 700;
  color: var(--web-text, #111);
}
.wt-testimonial-role {
  font-size: 0.85rem;
  color: var(--web-muted, #666);
}

/* ── Gallery Tabs ── */
.wt-section-gallery-tabs {
  padding: 48px 0;
}
.wt-gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.wt-gallery-tab {
  padding: 8px 20px;
  border: 2px solid var(--web-line, #ddd);
  border-radius: 50px;
  background: transparent;
  color: var(--web-text, #333);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.95rem;
}
.wt-gallery-tab.active {
  background: var(--web-primary, #2563eb);
  color: #fff;
  border-color: var(--web-primary, #2563eb);
}
.wt-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.wt-gallery-item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
}
.wt-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.wt-gallery-item:hover img { transform: scale(1.05); }

/* ── Blog / News ── */
.wt-section-blog-news {
  padding: 48px 0;
}
.wt-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.wt-blog-card {
  background: var(--web-card, #fff);
  border: 1px solid var(--web-line, #eee);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s;
}
.wt-blog-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.wt-blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.wt-blog-info {
  padding: 20px;
}
.wt-blog-date {
  font-size: 0.8rem;
  color: var(--web-muted, #999);
  margin-bottom: 8px;
}
.wt-blog-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--web-text, #111);
  margin-bottom: 8px;
  line-height: 1.3;
}
.wt-blog-excerpt {
  font-size: 0.9rem;
  color: var(--web-muted, #666);
  line-height: 1.5;
}

/* ── Newsletter ── */
/* v3.1 (2026-04-27 update): tematizar newsletter para que combine con cada theme.
   Antes era blanco hardcoded → chocaba en themes oscuros (barbería, gym, etc.).
   Ahora usa un tinte sutil del accent sobre el fondo del theme (color-mix). */
.wt-section-newsletter {
  padding: 56px 0;
  background:
    radial-gradient(ellipse at top, color-mix(in srgb, var(--web-primary, #2563eb) 18%, transparent), transparent 70%),
    color-mix(in srgb, var(--web-primary, #2563eb) 6%, var(--web-bg, #0f172a));
  border-top: 1px solid color-mix(in srgb, var(--web-primary, #2563eb) 22%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--web-primary, #2563eb) 22%, transparent);
  text-align: center;
  color: var(--web-text, #f1f5f9);
}
.wt-newsletter-inner {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 24px;
}
/* v9 (2026-05-10) Issue L fix: usar var(--heading) o --web-heading-strong
 * con fallback robusto. Antes usaba --web-text que en algunos themes
 * (salon-elegant) era #eaeaea — visualmente "deslavado" en heading h2.
 * Heading necesita color FUERTE (negro puro o blanco puro según theme). */
.wt-newsletter-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--heading, var(--web-heading-strong, var(--web-text, #0f172a)));
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}
.wt-newsletter-subtitle {
  font-size: 1rem;
  color: var(--web-muted, #94a3b8);
  margin-bottom: 28px;
  opacity: 0.9;
}
.wt-newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
}
.wt-newsletter-input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid var(--web-line, #ddd);
  border-radius: 50px;
  font-size: 1rem;
  background: var(--web-card, #fff);
  color: var(--web-text, #111);
  outline: none;
  transition: border-color 0.2s;
}
.wt-newsletter-input:focus {
  border-color: var(--web-primary, #2563eb);
}
.wt-newsletter-btn {
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  background: var(--web-primary, #2563eb);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.wt-newsletter-btn:hover { filter: brightness(1.1); }

/* ── Banner Fullwidth ── */
.wt-section-banner-fullwidth {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  position: relative;
  text-decoration: none;
  color: #fff;
}
.wt-banner-overlay {
  position: absolute;
  inset: 0;
  background: #000;
}
.wt-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 24px;
}
.wt-banner-title {
  font-size: 2.5rem;
  font-weight: 900;
}
.wt-banner-subtitle {
  font-size: 1.2rem;
  margin-top: 8px;
  opacity: 0.9;
}

/* ── Image Links (2 cols) ── */
.wt-section-image-links {
  padding: 32px 0;
}
.wt-image-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.wt-image-link {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  display: block;
  text-decoration: none;
  color: #fff;
  min-height: 300px;
  background-size: cover;
  background-position: center;
}
.wt-image-link-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}
.wt-image-link-title {
  font-size: 1.3rem;
  font-weight: 800;
}

/* ── Contact Form ── */
.wt-section-contact-form {
  padding: 48px 0;
}
.wt-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.wt-contact-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: var(--web-text, #333);
}
.wt-contact-info-item a {
  color: inherit;
  text-decoration: none;
}
.wt-contact-info-item a:hover {
  color: var(--web-primary, #2563eb);
}
.wt-contact-info-item svg {
  flex-shrink: 0;
  color: var(--web-primary, #2563eb);
}

/* ── Footer Enhanced ── */
.wt-section-footer-enhanced {
  background: var(--web-footer-bg, #111);
  color: var(--web-footer-text, #ccc);
  padding: 48px 0 0;
}
.wt-footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 32px;
}
/* v3.1 (2026-04-27 fix): primera columna (brand) más estrecha que las demás
   para no dejar el logo perdido con mucho espacio en blanco a la derecha (image #21). */
.wt-footer-inner[data-cols="2"] { grid-template-columns: minmax(220px, 1fr) 2fr; }
.wt-footer-inner[data-cols="3"] { grid-template-columns: minmax(220px, 1fr) 1.5fr 1.5fr; }
.wt-footer-inner[data-cols="4"] { grid-template-columns: minmax(220px, 1fr) 1.4fr 1.4fr 1.4fr; }
.wt-footer-brand { align-self: start; }
@media (max-width: 768px) {
  .wt-footer-inner[data-cols="2"],
  .wt-footer-inner[data-cols="3"],
  .wt-footer-inner[data-cols="4"] {
    grid-template-columns: 1fr;
  }
}
.wt-footer-logo {
  max-height: 56px;
  min-height: 36px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  margin-bottom: 16px;
  display: block;
}
.wt-footer-brand-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.2px;
}
.wt-footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.8;
}
.wt-footer-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.wt-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.wt-footer-contact-item svg { opacity: 0.7; }
.wt-footer-social {
  display: flex;
  gap: 12px;
}
.wt-footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.2s;
}
.wt-footer-social-link:hover {
  background: var(--web-primary, #2563eb);
}
.wt-footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.wt-badge {
  padding: 4px 12px;
  border-radius: 6px;
  background: rgba(255,255,255,0.1);
  font-size: 0.8rem;
  font-weight: 600;
}

/* ── Premium Payment Badges (v6 2026-05-08d) ────────────────────────────
 * Reemplaza chips de texto pobres por badges visuales con SVG inline.
 * Card blanca uniforme, hover lift, paleta agnóstica al tema (claro/oscuro). */
.wt-footer-badges-premium {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.wt-pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 6px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: transform 0.18s, box-shadow 0.18s;
  line-height: 0;
}
.wt-pay-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.14), 0 6px 14px rgba(0, 0, 0, 0.08);
}
.wt-pay-badge svg { display: block; }
.wt-pay-badge-wide svg { width: 90px; height: 32px; }
/* v8 (2026-05-09) audit panorama: pay badges 90px en mobile 430px causaban
 * desborde horizontal del footer cuando había Bancard+Pagopar+VISA+MC+AMEX.
 * En mobile escalamos a 70px (still legible, fits 5 badges en 1 fila wrap). */
@media (max-width: 430px) {
  .wt-pay-badge-wide svg { width: 70px; height: 25px; }
  .wt-footer-badges { flex-wrap: wrap; gap: 6px; }
}
.wt-footer-payments-note {
  margin-top: 12px;
  font-size: 0.78rem;
  opacity: 0.7;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── v10 (2026-05-10) Payment composites — banners OFICIALES PNG/WebP/AVIF ──
 * SVGs sintéticos rect+text reemplazados por logos oficiales descargados
 * (fair use estándar footer pasarela PY). Imágenes servidas por
 * /payment-assets/ con Accept negotiation AVIF > WebP > PNG.
 *   Bancard → bancard-banner.png  (shield + texto + 9 tarjetas — fondo negro)
 *   Pagopar → pagopar-row.png     (8 logos + "+7" + "PROCESADO POR Pagopar" — fondo blanco)
 * Solo se renderizan cuando el tenant tiene la pasarela activa. */
.wt-footer-payments-composites {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

/* === Bancard composite — banner ancho con shield + tarjetas (fondo negro embebido) === */
.wt-pay-bancard-composite {
  display: block;
  max-width: 480px;
  width: 100%;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.wt-pay-bancard-composite img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
}

/* === Pagopar composite — fila ancha logos + "PROCESADO POR Pagopar" (fondo blanco embebido) === */
.wt-pay-pagopar-composite {
  display: block;
  max-width: 580px;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  padding: 6px 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}
.wt-pay-pagopar-composite img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 56px;
  object-fit: contain;
}

/* === Mobile responsive composites === */
@media (max-width: 430px) {
  .wt-pay-bancard-composite { max-width: 100%; }
  .wt-pay-bancard-composite img { max-height: 130px; }
  .wt-pay-pagopar-composite { max-width: 100%; padding: 5px 8px; }
  .wt-pay-pagopar-composite img { max-height: 44px; }
}

/* === Tablet portrait === */
@media (min-width: 431px) and (max-width: 768px) {
  .wt-pay-bancard-composite { max-width: 360px; }
  .wt-pay-pagopar-composite { max-width: 480px; }
}

/* === Composite clickable (UX premium si tenant tiene checkout) === */
.wt-pay-clickable {
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
  color: inherit;
  text-decoration: none;
}
.wt-pay-clickable:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(31, 79, 165, 0.30);
}
.wt-pay-clickable:focus-visible {
  outline: 2px solid var(--web-primary, #2563eb);
  outline-offset: 3px;
}
.wt-pay-pagopar-composite.wt-pay-clickable:hover {
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.30);
}
.wt-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wt-footer-copyright {
  font-size: 0.85rem;
  opacity: 0.6;
}
.wt-footer-powered {
  font-size: 0.8rem;
  opacity: 0.4;
}
.wt-footer-powered a {
  color: inherit;
  text-decoration: underline;
}

/* ── Header Ecommerce ── */
.wt-section-header-ecommerce {
  background: var(--web-card, #fff);
  border-bottom: 1px solid var(--web-line, #eee);
  position: relative;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.wt-section-header-ecommerce.wt-header-sticky {
  position: sticky;
  top: 0;
}
.wt-ecom-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.wt-ecom-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.wt-ecom-logo img {
  max-height: 40px;
  object-fit: contain;
}
.wt-ecom-logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--web-text, #111);
}
/* v3 (2026-04-24): nav principal integrada al header-ecommerce */
.wt-ecom-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.wt-ecom-nav-link {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--web-text, #111);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.wt-ecom-nav-link:hover {
  background: color-mix(in srgb, var(--web-primary, #2563eb) 10%, transparent);
  color: var(--web-primary, #2563eb);
}
.wt-ecom-nav-link-active {
  color: var(--web-primary, #2563eb);
  background: color-mix(in srgb, var(--web-primary, #2563eb) 12%, transparent);
}

.wt-ecom-search {
  flex: 1;
  max-width: 400px;
  position: relative;
}
.wt-ecom-search input {
  width: 100%;
  padding: 10px 16px 10px 42px;
  border: 2px solid var(--web-line, #ddd);
  border-radius: 50px;
  font-size: 0.95rem;
  background: var(--web-surface, #f8f9fa);
  color: var(--web-text, #111);
  outline: none;
  transition: border-color 0.2s;
}
.wt-ecom-search input:focus {
  border-color: var(--web-primary, #2563eb);
}
.wt-ecom-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--web-muted, #999);
}
.wt-ecom-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.wt-ecom-action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: none;
  background: transparent;
  color: var(--web-text, #333);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s;
}
.wt-ecom-action-btn:hover {
  background: var(--web-surface, #f0f0f0);
}
.wt-ecom-cart-btn {
  position: relative;
}
.wt-ecom-cart-badge {
  position: absolute;
  top: -4px;
  right: -8px;
  background: var(--web-primary, #2563eb);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* ── Category Nav ── */
.wt-section-category-nav {
  background: var(--web-surface, #f8f9fa);
  border-bottom: 1px solid var(--web-line, #eee);
}
.wt-catnav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.wt-catnav-item {
  position: relative;
  padding: 12px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--web-text, #333);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
  cursor: pointer;
  background: transparent;
  border: none;
}
.wt-catnav-item:hover {
  color: var(--web-primary, #2563eb);
}
.wt-catnav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--web-card, #fff);
  border: 1px solid var(--web-line, #eee);
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  z-index: 50;
  padding: 8px 0;
}
.wt-catnav-item:hover .wt-catnav-dropdown {
  display: block;
}
.wt-catnav-sub {
  display: block;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--web-text, #333);
  text-decoration: none;
  transition: background 0.15s;
}
.wt-catnav-sub:hover {
  background: var(--web-surface, #f0f0f0);
  color: var(--web-primary, #2563eb);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .wt-hero-title { font-size: 2.2rem; }
  .wt-hero-subtitle { font-size: 1.05rem; }
  .wt-section-title { font-size: 1.5rem; }

  .wt-contact-inner { grid-template-columns: 1fr; }
  .wt-image-links-grid { grid-template-columns: 1fr; }
  .wt-promo-grid[data-cols="3"],
  .wt-promo-grid[data-cols="4"] { grid-template-columns: 1fr; }
  /* v6.1 (2026-05-08): en mobile cuando colapsa a 1 columna, la card debe ser
     un banner horizontal pequeño (no más alto que el hero). Defense-in-depth:
     `height` fijo (no solo aspect-ratio) + !important para garantizar override
     contra cualquier cache stale o regla heredada. */
  .wt-promo-card {
    aspect-ratio: 16 / 9 !important;
    min-height: 0 !important;
    height: 160px !important;
    max-height: 160px !important;
  }
  .wt-promo-card-title { font-size: 0.95rem; }
  .wt-promo-card-content { padding: 12px 14px; }
  .wt-services-grid[data-cols="3"],
  .wt-services-grid[data-cols="4"] { grid-template-columns: 1fr; }
  .wt-pricing-grid[data-cols="3"] { grid-template-columns: 1fr; }
  .wt-team-grid[data-cols="4"],
  .wt-team-grid[data-cols="5"] { grid-template-columns: repeat(2, 1fr); }
  .wt-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .wt-products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .wt-ecom-header-inner { flex-wrap: wrap; gap: 10px; }
  .wt-ecom-nav { order: 5; flex-basis: 100%; justify-content: center; gap: 2px; overflow-x: auto; padding-bottom: 2px; }
  .wt-ecom-nav-link { padding: 6px 10px; font-size: 0.78rem; }
  .wt-ecom-search { max-width: 100%; order: 3; flex-basis: 100%; }
  .wt-catnav-inner { gap: 0; }

  .wt-footer-inner { grid-template-columns: 1fr; }
  .wt-footer-bottom { flex-direction: column; gap: 8px; }

  .wt-newsletter-form { flex-direction: column; }
  .wt-newsletter-btn { width: 100%; }
}

@media (max-width: 430px) {
  .wt-hero-title { font-size: 1.8rem; }
  .wt-section-title { font-size: 1.3rem; }
  .wt-products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .wt-product-img { height: 150px; }
  .wt-product-info { padding: 10px; }
  .wt-product-name { font-size: 0.85rem; }
  .wt-product-price { font-size: 1rem; }
  /* v6.1 (2026-05-08): iPhone — banner promocional aún más compacto.
     `height` fijo + !important defense-in-depth. */
  .wt-promo-card {
    height: 130px !important;
    max-height: 130px !important;
    aspect-ratio: auto !important;
  }
  .wt-promo-card-title { font-size: 0.9rem; }
  .wt-promo-card-content { padding: 10px 12px; }
  .wt-section-promo-banners { padding: 16px 0; }
  .wt-promo-grid { gap: 10px; padding: 0 14px; }
  .wt-team-grid[data-cols="3"],
  .wt-team-grid[data-cols="4"],
  .wt-team-grid[data-cols="5"] { grid-template-columns: repeat(2, 1fr); }
  .wt-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .wt-blog-grid { grid-template-columns: 1fr; }
  .wt-locations-grid { grid-template-columns: 1fr; }
  .wt-ecom-action-btn span { display: none; } /* Hide text on very small screens */
  .wt-pricing-item { flex-direction: column; align-items: flex-start; gap: 8px; }
  .wt-pricing-right { width: 100%; justify-content: space-between; }
  .wt-hero-slide { min-height: 280px !important; }
  .wt-hero-slide-content h2 { font-size: 1.5rem; }
}

/* Ultra-small screens (iPhone SE, 320-360px) */
@media (max-width: 360px) {
  .wt-products-grid { grid-template-columns: 1fr; }
  .wt-team-grid[data-cols="2"],
  .wt-team-grid[data-cols="3"],
  .wt-team-grid[data-cols="4"],
  .wt-team-grid[data-cols="5"] { grid-template-columns: 1fr; }
  .wt-gallery-grid { grid-template-columns: 1fr; }
  .wt-promo-grid[data-cols="2"] { grid-template-columns: 1fr; }
  .wt-ecom-header-inner { padding: 8px 12px; }
}

/* ==========================================================================
   v2 (2026-04-23) — Secciones ricas para templates por tier
   Theme-safe: usa CSS vars del tema (no hardcoded colors)
   ========================================================================== */

/* video-hero ---------------------------------------------------------------- */
.wt-v2-videohero { position: relative; width: 100%; overflow: hidden; background-color: #000; }
/* v3 (2026-04-24): poster siempre visible al fondo (z:0), video encima (z:1).
   Si video carga OK se superpone vía opacity; si falla, queda la imagen. */
.wt-v2-videohero-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.wt-v2-videohero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.wt-v2-videohero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,var(--wt-v2-overlay, 0.45)); z-index: 1; }
.wt-v2-videohero-content { position: relative; z-index: 2; max-width: 960px; margin: 0 auto; padding: 24px; text-align: center; color: #fff; display: flex; flex-direction: column; gap: 16px; align-items: center; justify-content: center; min-height: inherit; }
.wt-v2-videohero-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; margin: 0; line-height: 1.1; }
.wt-v2-videohero-subtitle { font-size: clamp(1rem, 2vw, 1.3rem); opacity: 0.95; margin: 0; max-width: 720px; }
.wt-v2-videohero-cta { display: inline-block; padding: 14px 36px; min-height: 48px; border-radius: 10px; background: var(--blue); color: #fff; font-weight: 700; text-decoration: none; transition: transform .15s ease; }
.wt-v2-videohero-cta:hover { transform: translateY(-2px); }
.wt-v2-videohero-cta[data-style="outline"] { background: transparent; border: 2px solid #fff; color: #fff; }
/* v3.1 (2026-04-27): forzar texto oscuro cuando el botón es blanco — antes usaba
   var(--text) que en algunos themes resolvía a #fff y dejaba el CTA ilegible. */
.wt-v2-videohero-cta[data-style="white"] { background: #fff !important; color: #111 !important; border: 2px solid #fff; }
.wt-v2-videohero-cta[data-style="white"]:hover { background: rgba(255,255,255,.95) !important; }

/* video-embed --------------------------------------------------------------- */
.wt-v2-videoembed { padding: 60px 24px; }
.wt-v2-videoembed-inner { max-width: 960px; margin: 0 auto; }
.wt-v2-videoembed-header { text-align: center; margin-bottom: 32px; }
.wt-v2-videoembed-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: var(--text); margin: 0 0 12px; }
.wt-v2-videoembed-desc { color: var(--text); opacity: 0.75; max-width: 640px; margin: 0 auto; }
.wt-v2-videoembed-frame { position: relative; width: 100%; border-radius: 16px; overflow: hidden; background: #000; box-shadow: 0 20px 60px color-mix(in srgb, var(--text) 15%, transparent); }
.wt-v2-videoembed-frame[data-aspect="16:9"] { aspect-ratio: 16/9; }
.wt-v2-videoembed-frame[data-aspect="4:3"] { aspect-ratio: 4/3; }
.wt-v2-videoembed-frame[data-aspect="9:16"] { aspect-ratio: 9/16; max-width: 380px; margin: 0 auto; }
.wt-v2-videoembed-frame[data-aspect="1:1"] { aspect-ratio: 1/1; max-width: 560px; margin: 0 auto; }
.wt-v2-videoembed-frame iframe,
.wt-v2-videoembed-frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.wt-v2-videoembed-thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
.wt-v2-videoembed-playicon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 72px; height: 72px; border-radius: 50%; background: color-mix(in srgb, var(--blue) 90%, transparent); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 28px; cursor: pointer; pointer-events: none; }

/* before-after-slider ------------------------------------------------------- */
.wt-v2-ba { padding: 60px 24px; }
.wt-v2-ba-inner { max-width: 1200px; margin: 0 auto; }
.wt-v2-ba-header { text-align: center; margin-bottom: 32px; }
.wt-v2-ba-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: var(--text); margin: 0 0 12px; }
.wt-v2-ba-subtitle { color: var(--text); opacity: 0.75; }
.wt-v2-ba-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.wt-v2-ba-item { background: var(--card); border-radius: 14px; overflow: hidden; box-shadow: 0 4px 16px color-mix(in srgb, var(--text) 6%, transparent); }
.wt-v2-ba-slider-wrap { position: relative; width: 100%; aspect-ratio: 4/3; user-select: none; overflow: hidden; cursor: col-resize; touch-action: none; }
.wt-v2-ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.wt-v2-ba-img[data-role="after"] { clip-path: inset(0 0 0 50%); }
.wt-v2-ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 4px; background: #fff; pointer-events: none; box-shadow: 0 0 12px rgba(0,0,0,0.4); }
.wt-v2-ba-handle::after { content: "⇔"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 44px; height: 44px; border-radius: 50%; background: #fff; color: var(--text); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 900; box-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.wt-v2-ba-label { position: absolute; top: 12px; padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; background: rgba(0,0,0,0.7); color: #fff; text-transform: uppercase; letter-spacing: 0.05em; }
.wt-v2-ba-label[data-side="before"] { left: 12px; }
.wt-v2-ba-label[data-side="after"] { right: 12px; }
.wt-v2-ba-caption { padding: 14px 16px; color: var(--text); font-weight: 600; text-align: center; }

/* timeline ------------------------------------------------------------------ */
.wt-v2-timeline { padding: 60px 24px; }
.wt-v2-timeline-inner { max-width: 1000px; margin: 0 auto; }
.wt-v2-timeline-header { text-align: center; margin-bottom: 40px; }
.wt-v2-timeline-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: var(--text); margin: 0 0 12px; }
.wt-v2-timeline-list { position: relative; padding: 20px 0; }
.wt-v2-timeline-list[data-orientation="vertical"]::before { content: ""; position: absolute; left: 24px; top: 0; bottom: 0; width: 2px; background: var(--line); }
.wt-v2-timeline-list[data-orientation="vertical"] .wt-v2-timeline-item { position: relative; padding: 12px 0 28px 64px; }
.wt-v2-timeline-list[data-orientation="vertical"] .wt-v2-timeline-dot { position: absolute; left: 12px; top: 16px; width: 28px; height: 28px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; box-shadow: 0 0 0 4px var(--card); }
.wt-v2-timeline-list[data-orientation="horizontal"] { display: flex; gap: 16px; overflow-x: auto; padding: 20px 0; }
.wt-v2-timeline-list[data-orientation="horizontal"] .wt-v2-timeline-item { min-width: 260px; background: var(--card); border-radius: 12px; padding: 20px; border: 1px solid var(--line); }
.wt-v2-timeline-date { display: inline-block; padding: 2px 10px; border-radius: 999px; background: color-mix(in srgb, var(--blue) 15%, transparent); color: var(--blue); font-size: 12px; font-weight: 700; margin-bottom: 8px; }
.wt-v2-timeline-item-title { font-size: 1.1rem; font-weight: 700; color: var(--text); margin: 4px 0 8px; }
.wt-v2-timeline-item-desc { color: var(--text); opacity: 0.9; line-height: 1.5; font-size: 0.95rem; }
.wt-v2-timeline-item-img { width: 100%; border-radius: 10px; margin-top: 12px; max-height: 200px; object-fit: cover; }

/* stats-counter ------------------------------------------------------------- */
.wt-v2-stats { padding: 60px 24px; }
.wt-v2-stats-inner { max-width: 1200px; margin: 0 auto; }
.wt-v2-stats-title { text-align: center; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--text); margin: 0 0 32px; }
.wt-v2-stats-grid { display: grid; gap: 24px; }
.wt-v2-stats-grid[data-cols="2"] { grid-template-columns: repeat(2, 1fr); }
.wt-v2-stats-grid[data-cols="3"] { grid-template-columns: repeat(3, 1fr); }
.wt-v2-stats-grid[data-cols="4"] { grid-template-columns: repeat(4, 1fr); }
.wt-v2-stats-item { text-align: center; padding: 24px 16px; background: var(--card); border-radius: 16px; border: 1px solid var(--line); transition: transform .2s ease, box-shadow .2s ease; }
.wt-v2-stats-item:hover { transform: translateY(-4px); box-shadow: 0 10px 30px color-mix(in srgb, var(--blue) 10%, transparent); }
.wt-v2-stats-icon { font-size: 32px; color: var(--blue); margin-bottom: 8px; }
.wt-v2-stats-value { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--text); line-height: 1; }
.wt-v2-stats-suffix { color: var(--blue); margin-left: 2px; }
.wt-v2-stats-label { font-size: 0.95rem; color: var(--text); opacity: 0.85; margin-top: 8px; font-weight: 500; }

/* pricing-table ------------------------------------------------------------- */
.wt-v2-pricing { padding: 60px 24px; }
.wt-v2-pricing-inner { max-width: 1200px; margin: 0 auto; }
.wt-v2-pricing-header { text-align: center; margin-bottom: 40px; }
.wt-v2-pricing-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: var(--text); margin: 0 0 12px; }
.wt-v2-pricing-toggle { display: inline-flex; background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: 4px; margin-top: 16px; }
.wt-v2-pricing-toggle button { background: transparent; border: 0; padding: 8px 20px; border-radius: 999px; font-weight: 600; color: var(--text); cursor: pointer; transition: background .15s; }
.wt-v2-pricing-toggle button.active { background: var(--blue); color: #fff; }
.wt-v2-pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; align-items: stretch; }
.wt-v2-pricing-card { position: relative; display: flex; flex-direction: column; background: var(--card); border: 2px solid var(--line); border-radius: 16px; padding: 32px 24px; transition: transform .2s ease, border-color .2s ease; }
.wt-v2-pricing-card[data-highlighted="true"] { border-color: var(--blue); transform: scale(1.03); box-shadow: 0 20px 50px color-mix(in srgb, var(--blue) 20%, transparent); }
.wt-v2-pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--blue); color: #fff; font-size: 11px; font-weight: 800; padding: 4px 12px; border-radius: 999px; letter-spacing: 0.05em; text-transform: uppercase; }
.wt-v2-pricing-name { font-size: 1.1rem; font-weight: 700; color: var(--text); margin: 0 0 8px; }
.wt-v2-pricing-price { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--text); line-height: 1; margin: 8px 0; }
.wt-v2-pricing-period { font-size: 0.9rem; color: var(--text); opacity: 0.75; font-weight: 500; }
.wt-v2-pricing-features { list-style: none; padding: 0; margin: 20px 0; flex: 1; }
.wt-v2-pricing-features li { padding: 8px 0; color: var(--text); opacity: 0.85; font-size: 0.95rem; display: flex; align-items: center; gap: 8px; }
.wt-v2-pricing-features li::before { content: "✓"; color: var(--success-text, #059669); font-weight: 900; }
.wt-v2-pricing-cta { display: block; padding: 12px 20px; min-height: 44px; background: var(--blue); color: #fff; border-radius: 10px; text-align: center; font-weight: 700; text-decoration: none; transition: transform .15s; }
.wt-v2-pricing-cta:hover { transform: translateY(-2px); }
.wt-v2-pricing-card[data-highlighted="true"] .wt-v2-pricing-cta { box-shadow: 0 8px 24px color-mix(in srgb, var(--blue) 30%, transparent); }

/* faq-accordion ------------------------------------------------------------- */
.wt-v2-faq { padding: 60px 24px; }
.wt-v2-faq-inner { max-width: 800px; margin: 0 auto; }
.wt-v2-faq-header { text-align: center; margin-bottom: 32px; }
.wt-v2-faq-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: var(--text); margin: 0 0 12px; }
.wt-v2-faq-list { display: flex; flex-direction: column; gap: 12px; }
.wt-v2-faq-item { background: var(--card); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.wt-v2-faq-q { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 18px 20px; background: transparent; border: 0; color: var(--text); font-weight: 600; font-size: 1rem; text-align: left; cursor: pointer; min-height: 48px; }
.wt-v2-faq-q:hover { background: color-mix(in srgb, var(--blue) 5%, transparent); }
.wt-v2-faq-arrow { transition: transform .2s ease; color: var(--blue); font-weight: 900; }
.wt-v2-faq-item[data-open="true"] .wt-v2-faq-arrow { transform: rotate(180deg); }
.wt-v2-faq-a { padding: 0 20px 20px; color: var(--text); opacity: 0.9; line-height: 1.6; display: none; }
.wt-v2-faq-item[data-open="true"] .wt-v2-faq-a { display: block; }

/* lookbook-editorial -------------------------------------------------------- */
.wt-v2-lookbook { padding: 60px 0; }
.wt-v2-lookbook-header { text-align: center; padding: 0 24px; margin-bottom: 32px; }
.wt-v2-lookbook-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: var(--text); margin: 0 0 12px; }
.wt-v2-lookbook-slides { display: flex; flex-direction: column; gap: 40px; }
.wt-v2-lookbook-slide { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 480px; align-items: stretch; }
.wt-v2-lookbook-slide[data-layout="right"] { direction: rtl; }
.wt-v2-lookbook-slide[data-layout="right"] > * { direction: ltr; }
.wt-v2-lookbook-slide[data-layout="fullbleed"] { grid-template-columns: 1fr; position: relative; min-height: 560px; }
.wt-v2-lookbook-img { width: 100%; height: 100%; object-fit: cover; }
.wt-v2-lookbook-content { display: flex; flex-direction: column; justify-content: center; padding: 40px; background: var(--card); }
.wt-v2-lookbook-slide[data-layout="fullbleed"] .wt-v2-lookbook-content { position: absolute; inset: auto 24px 40px 24px; background: rgba(0,0,0,0.6); color: #fff; border-radius: 14px; padding: 28px; max-width: 560px; }
.wt-v2-lookbook-stitle { font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 800; color: var(--text); margin: 0 0 14px; line-height: 1.15; }
.wt-v2-lookbook-slide[data-layout="fullbleed"] .wt-v2-lookbook-stitle { color: #fff; }
.wt-v2-lookbook-caption { font-size: 1.05rem; line-height: 1.65; color: var(--text); opacity: 0.85; margin: 0 0 20px; }
.wt-v2-lookbook-slide[data-layout="fullbleed"] .wt-v2-lookbook-caption { color: rgba(255,255,255,0.9); opacity: 1; }
.wt-v2-lookbook-cta { display: inline-block; padding: 12px 28px; border-radius: 10px; background: var(--blue); color: #fff; font-weight: 700; text-decoration: none; align-self: flex-start; min-height: 44px; }

/* instagram-feed ------------------------------------------------------------ */
.wt-v2-ig { padding: 60px 24px; }
.wt-v2-ig-inner { max-width: 1200px; margin: 0 auto; }
.wt-v2-ig-header { text-align: center; margin-bottom: 24px; }
.wt-v2-ig-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--text); margin: 0 0 8px; }
.wt-v2-ig-subtitle { color: var(--text); opacity: 0.85; }
.wt-v2-ig-grid { display: grid; gap: 8px; }
.wt-v2-ig-grid[data-cols="2"] { grid-template-columns: repeat(2, 1fr); }
.wt-v2-ig-grid[data-cols="3"] { grid-template-columns: repeat(3, 1fr); }
.wt-v2-ig-grid[data-cols="4"] { grid-template-columns: repeat(4, 1fr); }
.wt-v2-ig-grid[data-cols="6"] { grid-template-columns: repeat(6, 1fr); }
.wt-v2-ig-post { position: relative; aspect-ratio: 1/1; overflow: hidden; border-radius: 8px; display: block; cursor: pointer; }
.wt-v2-ig-post img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.wt-v2-ig-post:hover img { transform: scale(1.05); }
.wt-v2-ig-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.35); opacity: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 24px; transition: opacity .25s ease; }
.wt-v2-ig-post:hover .wt-v2-ig-overlay { opacity: 1; }

/* lottie-animation ---------------------------------------------------------- */
.wt-v2-lottie { padding: 60px 24px; text-align: center; }
.wt-v2-lottie-inner { max-width: 1000px; margin: 0 auto; }
.wt-v2-lottie-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: var(--text); margin: 0 0 12px; }
.wt-v2-lottie-subtitle { color: var(--text); opacity: 0.85; max-width: 640px; margin: 0 auto 24px; }
.wt-v2-lottie-player { margin: 0 auto; }

/* trust-badges -------------------------------------------------------------- */
.wt-v2-trust { padding: 40px 24px; }
.wt-v2-trust-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.wt-v2-trust-title { font-size: 1rem; font-weight: 700; color: var(--text); opacity: 0.85; text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 24px; }
.wt-v2-trust-grid { display: grid; gap: 20px; align-items: center; justify-items: center; }
/* v15v (2026-05-17): owner OS Premium pidió 1-2 columnas además de 3-6.
   Cuando hay 1 columna, el grid centra el item. Cuando hay 2, layout 2-col.
   v15y (2026-05-17): card envolvente proporcional al contenido (no full-width
   1200px). Owner mostró imagen #40 → cuadro blanco gigante para 1 logo, pidió
   imagen #41 → cuadro cuadrado compacto centrado. Fix: width:fit-content +
   margin auto. Aplica solo a 1-2 cols (3+ se ven mejor full-width). */
.wt-v2-trust-grid[data-cols="1"] { grid-template-columns: 400px; justify-content: center; width: fit-content; margin-left: auto; margin-right: auto; max-width: 100%; }
.wt-v2-trust-grid[data-cols="2"] { grid-template-columns: repeat(2, 320px); justify-content: center; width: fit-content; margin-left: auto; margin-right: auto; max-width: 100%; }
.wt-v2-trust-grid[data-cols="3"] { grid-template-columns: repeat(3, 1fr); }
.wt-v2-trust-grid[data-cols="4"] { grid-template-columns: repeat(4, 1fr); }
.wt-v2-trust-grid[data-cols="5"] { grid-template-columns: repeat(5, 1fr); }
.wt-v2-trust-grid[data-cols="6"] { grid-template-columns: repeat(6, 1fr); }
.wt-v2-trust-item { display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0.75; transition: opacity .2s, transform .2s; }
.wt-v2-trust-item:hover { opacity: 1; transform: translateY(-2px); }
.wt-v2-trust-logo { max-width: 120px; max-height: 60px; object-fit: contain; filter: grayscale(0.4); }
.wt-v2-trust-item:hover .wt-v2-trust-logo { filter: grayscale(0); }
.wt-v2-trust-label { font-size: 0.8rem; color: var(--text); opacity: 0.85; font-weight: 600; }

/* v15s (2026-05-17) — variantes de tamaño configurable trust-badges.
   Owner OS Premium pidió "agrandar sello de confianza". 4 tamaños logo
   + 4 tamaños sección padding, controlados desde editor. */
.wt-section-trust-badges[data-logo-size="small"] .wt-v2-trust-logo {
  max-width: 80px;
  max-height: 40px;
}
.wt-section-trust-badges[data-logo-size="large"] .wt-v2-trust-logo {
  max-width: 200px;
  max-height: 110px;
}
.wt-section-trust-badges[data-logo-size="xlarge"] .wt-v2-trust-logo {
  max-width: 300px;
  max-height: 180px;
}
.wt-section-trust-badges[data-logo-size="large"] .wt-v2-trust-label,
.wt-section-trust-badges[data-logo-size="xlarge"] .wt-v2-trust-label {
  font-size: 1rem;
}
.wt-section-trust-badges[data-section-size="compact"] {
  padding: 24px 16px !important;
}
.wt-section-trust-badges[data-section-size="large"] {
  padding: 80px 24px !important;
}
.wt-section-trust-badges[data-section-size="xlarge"] {
  padding: 120px 24px !important;
}
.wt-section-trust-badges[data-section-size="large"] .wt-v2-trust-title,
.wt-section-trust-badges[data-section-size="xlarge"] .wt-v2-trust-title {
  font-size: 1.4rem;
  margin-bottom: 36px;
}
/* v15y (2026-05-17): card 1-2 cols crece proporcional al logoSize para
   evitar que logo xlarge (300px) quede apretado en grid de 400px. */
.wt-section-trust-badges[data-logo-size="large"] .wt-v2-trust-grid[data-cols="1"] { grid-template-columns: 500px; }
.wt-section-trust-badges[data-logo-size="xlarge"] .wt-v2-trust-grid[data-cols="1"] { grid-template-columns: 600px; }
.wt-section-trust-badges[data-logo-size="large"] .wt-v2-trust-grid[data-cols="2"] { grid-template-columns: repeat(2, 380px); }
.wt-section-trust-badges[data-logo-size="xlarge"] .wt-v2-trust-grid[data-cols="2"] { grid-template-columns: repeat(2, 440px); }
.wt-section-trust-badges[data-logo-size="small"] .wt-v2-trust-grid[data-cols="1"] { grid-template-columns: 320px; }
.wt-section-trust-badges[data-logo-size="small"] .wt-v2-trust-grid[data-cols="2"] { grid-template-columns: repeat(2, 260px); }

/* interactive-menu ---------------------------------------------------------- */
.wt-v2-menu { padding: 60px 24px; }
.wt-v2-menu-inner { max-width: 1100px; margin: 0 auto; }
.wt-v2-menu-header { text-align: center; margin-bottom: 32px; }
.wt-v2-menu-title { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; color: var(--text); margin: 0 0 12px; }
.wt-v2-menu-tabs { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 32px; border-bottom: 1px solid var(--line); padding-bottom: 8px; }
.wt-v2-menu-tab { background: transparent; border: 0; padding: 10px 18px; color: var(--text); font-weight: 600; cursor: pointer; position: relative; border-bottom: 2px solid transparent; transition: color .15s, border-color .15s; }
.wt-v2-menu-tab.active { color: var(--blue); border-bottom-color: var(--blue); }
.wt-v2-menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.wt-v2-menu-dish { display: grid; grid-template-columns: 96px 1fr; gap: 14px; background: var(--card); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; transition: transform .15s, box-shadow .15s; }
.wt-v2-menu-dish:hover { transform: translateY(-2px); box-shadow: 0 8px 24px color-mix(in srgb, var(--text) 8%, transparent); }
.wt-v2-menu-dish-img { width: 96px; height: 96px; object-fit: cover; background: var(--line); }
.wt-v2-menu-dish-body { padding: 12px 14px 12px 0; display: flex; flex-direction: column; gap: 4px; }
.wt-v2-menu-dish-title { font-weight: 700; color: var(--text); font-size: 0.98rem; }
.wt-v2-menu-dish-desc { color: var(--text); opacity: 0.7; font-size: 0.86rem; line-height: 1.4; }
.wt-v2-menu-dish-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 4px; }
.wt-v2-menu-dish-price { font-weight: 800; color: var(--blue); }
.wt-v2-menu-tags { display: flex; gap: 4px; flex-wrap: wrap; }
.wt-v2-menu-tag { font-size: 10px; padding: 2px 6px; border-radius: 999px; background: color-mix(in srgb, var(--blue) 12%, transparent); color: var(--blue); font-weight: 700; text-transform: uppercase; }

/* class-schedule ------------------------------------------------------------ */
.wt-v2-sched { padding: 60px 24px; }
.wt-v2-sched-inner { max-width: 1100px; margin: 0 auto; }
.wt-v2-sched-header { text-align: center; margin-bottom: 24px; }
.wt-v2-sched-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: var(--text); margin: 0 0 12px; }
.wt-v2-sched-filters { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.wt-v2-sched-filter { background: var(--card); border: 1px solid var(--line); padding: 8px 14px; border-radius: 999px; color: var(--text); font-weight: 600; cursor: pointer; min-height: 36px; }
.wt-v2-sched-filter.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.wt-v2-sched-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; }
.wt-v2-sched-day { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 12px; display: flex; flex-direction: column; gap: 8px; min-height: 180px; }
.wt-v2-sched-day h4 { font-size: 12px; font-weight: 700; color: var(--text); opacity: 0.9; text-transform: uppercase; letter-spacing: 0.05em; margin: 0; text-align: center; }
.wt-v2-sched-slot { background: color-mix(in srgb, var(--blue) 8%, transparent); border-left: 3px solid var(--blue); padding: 8px 10px; border-radius: 6px; font-size: 0.82rem; }
.wt-v2-sched-slot-time { font-weight: 700; color: var(--blue); }
.wt-v2-sched-slot-name { color: var(--text); font-weight: 600; font-size: 0.82rem; line-height: 1.3; margin-top: 2px; }
.wt-v2-sched-slot-inst { color: var(--text); opacity: 0.85; font-size: 0.75rem; margin-top: 2px; }

/* emergency-banner ---------------------------------------------------------- */
.wt-v2-emerg { position: fixed; left: 0; right: 0; z-index: 1000; padding: 10px 16px; color: #fff; background: #dc2626; display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; box-shadow: 0 -4px 20px rgba(0,0,0,0.25); }
.wt-v2-emerg[data-position="top"] { top: 0; bottom: auto; box-shadow: 0 4px 20px rgba(0,0,0,0.25); }
.wt-v2-emerg[data-position="bottom"] { bottom: 0; top: auto; }
.wt-v2-emerg-icon { font-size: 22px; }
.wt-v2-emerg-text { font-weight: 700; font-size: 0.95rem; }
.wt-v2-emerg-cta { background: rgba(255,255,255,0.18); color: #fff; padding: 6px 14px; border-radius: 6px; font-weight: 800; text-decoration: none; font-size: 0.9rem; border: 1px solid rgba(255,255,255,0.4); min-height: 36px; display: inline-flex; align-items: center; gap: 6px; }
.wt-v2-emerg-close { background: transparent; color: #fff; border: 0; font-size: 22px; font-weight: 700; cursor: pointer; padding: 0 6px; opacity: 0.8; }

/* service-estimator --------------------------------------------------------- */
.wt-v2-est { padding: 60px 24px; }
.wt-v2-est-inner { max-width: 720px; margin: 0 auto; background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 36px; box-shadow: 0 20px 60px color-mix(in srgb, var(--text) 6%, transparent); }
.wt-v2-est-header { text-align: center; margin-bottom: 24px; }
.wt-v2-est-title { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; color: var(--text); margin: 0 0 8px; }
.wt-v2-est-subtitle { color: var(--text); opacity: 0.85; }
.wt-v2-est-form { display: grid; gap: 14px; }
.wt-v2-est-field { display: flex; flex-direction: column; gap: 6px; }
.wt-v2-est-field label { font-size: 0.9rem; color: var(--text); font-weight: 600; }
.wt-v2-est-field select,
.wt-v2-est-field input { min-height: 44px; padding: 10px 14px; border-radius: 10px; border: 1px solid var(--line); background: var(--surface, var(--card)); color: var(--text); font-size: 1rem; }
.wt-v2-est-result { padding: 16px; border-radius: 12px; background: color-mix(in srgb, var(--blue) 10%, transparent); color: var(--text); font-weight: 700; text-align: center; display: none; }
.wt-v2-est-result[data-visible="true"] { display: block; }
.wt-v2-est-submit { min-height: 48px; background: var(--blue); color: #fff; border: 0; border-radius: 10px; font-weight: 700; font-size: 1rem; cursor: pointer; padding: 12px; transition: transform .15s; }
.wt-v2-est-submit:hover { transform: translateY(-1px); }

/* case-studies -------------------------------------------------------------- */
.wt-v2-cases { padding: 60px 24px; }
.wt-v2-cases-inner { max-width: 1200px; margin: 0 auto; }
.wt-v2-cases-header { text-align: center; margin-bottom: 36px; }
.wt-v2-cases-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: var(--text); margin: 0 0 12px; }
.wt-v2-cases-grid { display: grid; gap: 24px; }
.wt-v2-cases-grid[data-cols="2"] { grid-template-columns: repeat(2, 1fr); }
.wt-v2-cases-grid[data-cols="3"] { grid-template-columns: repeat(3, 1fr); }
.wt-v2-case { background: var(--card); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.wt-v2-case:hover { transform: translateY(-4px); box-shadow: 0 20px 50px color-mix(in srgb, var(--text) 10%, transparent); }
.wt-v2-case-thumb { width: 100%; aspect-ratio: 16/10; object-fit: cover; background: var(--line); }
.wt-v2-case-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.wt-v2-case-industry { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--blue); font-weight: 800; }
.wt-v2-case-client { font-size: 1.15rem; font-weight: 800; color: var(--text); margin: 0; }
.wt-v2-case-kpi { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; color: var(--success-text, #059669); line-height: 1; }
.wt-v2-case-result-label { font-size: 0.88rem; color: var(--text); opacity: 0.85; margin-top: 2px; }
.wt-v2-case-testimonial { font-style: italic; color: var(--text); opacity: 0.85; font-size: 0.92rem; margin: 8px 0 0; border-left: 3px solid var(--blue); padding-left: 12px; }
.wt-v2-case-link { display: inline-block; margin-top: auto; padding-top: 12px; color: var(--blue); font-weight: 700; text-decoration: none; font-size: 0.92rem; }

/* ── Responsive: mobile <=768px y <=430px ── */
@media (max-width: 768px) {
  .wt-v2-stats-grid[data-cols="3"],
  .wt-v2-stats-grid[data-cols="4"] { grid-template-columns: repeat(2, 1fr); }
  .wt-v2-ig-grid[data-cols="4"],
  .wt-v2-ig-grid[data-cols="6"] { grid-template-columns: repeat(3, 1fr); }
  .wt-v2-trust-grid[data-cols="5"],
  .wt-v2-trust-grid[data-cols="6"] { grid-template-columns: repeat(3, 1fr); }
  .wt-v2-lookbook-slide,
  .wt-v2-lookbook-slide[data-layout="right"] { grid-template-columns: 1fr; direction: ltr; }
  .wt-v2-lookbook-img { height: 320px; }
  .wt-v2-cases-grid[data-cols="3"] { grid-template-columns: 1fr; }
  .wt-v2-sched-days { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .wt-v2-sched-day { min-height: auto; }
  .wt-v2-pricing-card[data-highlighted="true"] { transform: scale(1); }
}

@media (max-width: 430px) {
  .wt-v2-videohero-content { padding: 16px; }
  .wt-v2-stats-grid[data-cols="2"],
  .wt-v2-stats-grid[data-cols="3"],
  .wt-v2-stats-grid[data-cols="4"] { grid-template-columns: 1fr; }
  .wt-v2-ig-grid[data-cols="3"],
  .wt-v2-ig-grid[data-cols="4"],
  .wt-v2-ig-grid[data-cols="6"] { grid-template-columns: repeat(2, 1fr); }
  .wt-v2-trust-grid[data-cols="3"],
  .wt-v2-trust-grid[data-cols="4"],
  .wt-v2-trust-grid[data-cols="5"],
  .wt-v2-trust-grid[data-cols="6"] { grid-template-columns: repeat(2, 1fr); }
  /* v15z (2026-05-17): owner OS Premium reportó imagen #42 — v15y rompió mobile
     haciendo card full-width con logo arriba-izquierda y label "EUROIMPOR T"
     quebrado en 2 líneas. Fix: card proporcional min(320px, 92vw) centrado +
     logo + label centrados + label nowrap + logo max responsive. */
  .wt-v2-trust-grid[data-cols="1"],
  .wt-v2-trust-grid[data-cols="2"],
  .wt-section-trust-badges[data-logo-size="large"] .wt-v2-trust-grid[data-cols="1"],
  .wt-section-trust-badges[data-logo-size="xlarge"] .wt-v2-trust-grid[data-cols="1"],
  .wt-section-trust-badges[data-logo-size="large"] .wt-v2-trust-grid[data-cols="2"],
  .wt-section-trust-badges[data-logo-size="xlarge"] .wt-v2-trust-grid[data-cols="2"],
  .wt-section-trust-badges[data-logo-size="small"] .wt-v2-trust-grid[data-cols="1"],
  .wt-section-trust-badges[data-logo-size="small"] .wt-v2-trust-grid[data-cols="2"] {
    width: min(320px, 92vw);
    max-width: 92vw;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 22px 18px;
  }
  .wt-v2-trust-grid[data-cols="1"] .wt-v2-trust-item,
  .wt-v2-trust-grid[data-cols="2"] .wt-v2-trust-item {
    width: 100%;
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
  .wt-v2-trust-grid[data-cols="1"] .wt-v2-trust-label,
  .wt-v2-trust-grid[data-cols="2"] .wt-v2-trust-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    font-size: clamp(0.85rem, 3.2vw, 1rem);
    line-height: 1.2;
  }
  .wt-v2-trust-grid[data-cols="1"] .wt-v2-trust-logo,
  .wt-v2-trust-grid[data-cols="2"] .wt-v2-trust-logo {
    max-width: min(180px, 60vw);
    max-height: 80px;
    object-fit: contain;
  }
  .wt-section-trust-badges[data-logo-size="large"] .wt-v2-trust-grid[data-cols="1"] .wt-v2-trust-logo,
  .wt-section-trust-badges[data-logo-size="large"] .wt-v2-trust-grid[data-cols="2"] .wt-v2-trust-logo,
  .wt-section-trust-badges[data-logo-size="xlarge"] .wt-v2-trust-grid[data-cols="1"] .wt-v2-trust-logo,
  .wt-section-trust-badges[data-logo-size="xlarge"] .wt-v2-trust-grid[data-cols="2"] .wt-v2-trust-logo {
    max-width: min(220px, 70vw);
    max-height: 110px;
  }
  .wt-v2-cases-grid[data-cols="2"],
  .wt-v2-cases-grid[data-cols="3"] { grid-template-columns: 1fr; }
  .wt-v2-menu-dish { grid-template-columns: 72px 1fr; }
  .wt-v2-menu-dish-img { width: 72px; height: 72px; }
  .wt-v2-sched-days { grid-template-columns: 1fr; }
  .wt-v2-est-inner { padding: 24px 18px; border-radius: 14px; }
  .wt-v2-emerg { font-size: 0.85rem; flex-direction: column; gap: 8px; padding: 12px 14px; }
}

/* customer-reviews v3 (2026-04-23) - Reseñas reales de clientes --------- */
.wt-v2-reviews { padding: 60px 24px; }
.wt-v2-reviews-inner { max-width: 1200px; margin: 0 auto; }
.wt-v2-reviews-header { text-align: center; margin-bottom: 28px; }
.wt-v2-reviews-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: var(--text); margin: 0 0 8px; }
.wt-v2-reviews-subtitle { color: var(--text); opacity: 0.92; margin: 0 0 14px; }
.wt-v2-reviews-avg { min-height: 36px; }
.wt-v2-reviews-avg-wrap { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; background: var(--card); border: 1px solid var(--line); border-radius: 999px; color: var(--text); font-size: 1rem; }
.wt-v2-reviews-avg-wrap strong { font-size: 1.2rem; color: var(--blue); }
.wt-v2-reviews-avg-wrap span { color: var(--text); opacity: 0.85; font-size: 0.88rem; }

.wt-v2-reviews-stars { display: inline-flex; gap: 2px; letter-spacing: 1px; }
.wt-v2-reviews-star { color: color-mix(in srgb, var(--text) 25%, transparent); }
.wt-v2-reviews-star.on { color: #f59e0b; }

.wt-v2-reviews-list { display: grid; gap: 18px; margin-bottom: 30px; }
.wt-v2-reviews-list[data-cols="1"] { grid-template-columns: 1fr; }
.wt-v2-reviews-list[data-cols="2"] { grid-template-columns: repeat(2, 1fr); }
.wt-v2-reviews-list[data-cols="3"] { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.wt-v2-reviews-list.is-carousel { grid-auto-flow: column; grid-auto-columns: min(90%, 380px); overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; }
.wt-v2-reviews-list.is-carousel .wt-v2-reviews-card { scroll-snap-align: start; }

.wt-v2-reviews-card { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 20px; display: flex; flex-direction: column; gap: 10px; transition: transform .15s ease, box-shadow .15s ease; }
.wt-v2-reviews-card:hover { transform: translateY(-2px); box-shadow: 0 10px 24px color-mix(in srgb, var(--text) 6%, transparent); }
.wt-v2-reviews-card-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.wt-v2-reviews-card-date { font-size: 0.78rem; color: var(--text); opacity: 0.8; }
.wt-v2-reviews-card-comment { margin: 0; color: var(--text); line-height: 1.6; }
.wt-v2-reviews-card-author { color: var(--text); opacity: 0.9; font-weight: 600; font-size: 0.92rem; }

.wt-v2-reviews-empty,
.wt-v2-reviews-loading { grid-column: 1 / -1; text-align: center; padding: 30px 16px; color: var(--text); opacity: 0.85; background: var(--card); border: 1px dashed var(--line); border-radius: 12px; }

.wt-v2-reviews-login { text-align: center; padding: 18px 20px; background: color-mix(in srgb, var(--blue) 6%, transparent); border: 1px solid color-mix(in srgb, var(--blue) 30%, transparent); border-radius: 12px; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px; }
.wt-v2-reviews-login span { color: var(--text); }
.wt-v2-reviews-login-btn { padding: 10px 22px; background: var(--blue); color: #fff; border-radius: 8px; font-weight: 700; text-decoration: none; min-height: 40px; display: inline-flex; align-items: center; }

.wt-v2-reviews-form { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 22px; max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.wt-v2-reviews-form h3 { margin: 0; color: var(--text); font-size: 1.15rem; }
.wt-v2-reviews-rate { display: inline-flex; gap: 4px; }
.wt-v2-reviews-star-btn { background: transparent; border: 0; font-size: 1.7rem; color: color-mix(in srgb, var(--text) 25%, transparent); cursor: pointer; padding: 2px 4px; transition: transform .1s; }
.wt-v2-reviews-star-btn:hover { transform: scale(1.15); }
.wt-v2-reviews-star-btn.on { color: #f59e0b; }
.wt-v2-reviews-text { width: 100%; min-height: 110px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface, var(--card)); color: var(--text); font-family: inherit; font-size: 1rem; resize: vertical; }
.wt-v2-reviews-form-foot { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.wt-v2-reviews-note { font-size: 0.8rem; color: var(--text); opacity: 0.85; }
.wt-v2-reviews-submit { padding: 10px 24px; min-height: 44px; background: var(--blue); color: #fff; border: 0; border-radius: 10px; font-weight: 700; cursor: pointer; transition: transform .1s; }
.wt-v2-reviews-submit:hover { transform: translateY(-1px); }
.wt-v2-reviews-status { min-height: 22px; font-size: 0.88rem; color: var(--text); opacity: 0.8; }
.wt-v2-reviews-status.is-success { color: var(--success-text, #059669); opacity: 1; font-weight: 600; }
.wt-v2-reviews-status.is-error { color: var(--danger-text, #dc2626); opacity: 1; font-weight: 600; }
.wt-v2-reviews-status.is-info { color: var(--blue); opacity: 1; font-weight: 600; }
.wt-v2-reviews-author { width: 100%; padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface, var(--card)); color: var(--text); font-size: 0.95rem; font-family: inherit; }
.wt-v2-reviews-turnstile { display: flex; justify-content: center; min-height: 65px; }
.wt-v2-reviews-form.is-anonymous { background: color-mix(in srgb, var(--blue) 4%, var(--card)); }

@media (max-width: 768px) {
  .wt-v2-reviews-list[data-cols="2"],
  .wt-v2-reviews-list[data-cols="3"] { grid-template-columns: 1fr; }
}
@media (max-width: 430px) {
  .wt-v2-reviews { padding: 40px 16px; }
  .wt-v2-reviews-card { padding: 16px; }
  .wt-v2-reviews-form { padding: 18px 14px; }
  .wt-v2-reviews-form-foot { flex-direction: column; align-items: stretch; }
  .wt-v2-reviews-submit { width: 100%; }
}

/* =============================================================
   v4 (2026-04-25) — RESPONSIVE FIXES MOBILE/TABLET para v2 secciones
   y secciones legacy que tenían gaps. Cubre los 6 BREAKING reportados:
   video-hero, video-embed, before-after-slider, testimonials,
   hero-fullscreen, header-ecommerce. Más reducciones de padding 60px→40px
   en tablet y mejoras de touch-targets en mobile.
   ============================================================= */

/* ── TABLET 1023px ── ajusta secciones grandes con padding excesivo ── */
@media (max-width: 1023px) {
  .wt-v2-videoembed,
  .wt-v2-faq,
  .wt-v2-stats,
  .wt-v2-pricing,
  .wt-v2-trust,
  .wt-v2-cases,
  .wt-v2-reviews,
  .wt-v2-instagram,
  .wt-v2-timeline,
  .wt-v2-lookbook,
  .wt-v2-menu,
  .wt-v2-sched,
  .wt-v2-est,
  .wt-v2-lottie { padding: 50px 20px; }

  .wt-v2-ba-grid { grid-template-columns: 1fr; }

  /* hero-fullscreen min-height demasiado alto en iPad portrait */
  /* v15fn (2026-05-30) — pair svh + vh fallback (research 2026 CLS-safe). */
  .wt-section-hero-fullscreen {
    min-height: clamp(420px, 75vh, 100vh); /* fallback */
    min-height: clamp(420px, 75svh, 100svh); /* moderno */
  }
  /* Modo contain: ignorar el clamp y dejar que aspect-ratio natural defina la altura.
     v5.2: cubre los 3 tipos de hero (fullscreen, carousel slides, video-hero). */
  .wt-section-wrapper[data-image-fit="contain"] .wt-section-hero-fullscreen,
  .wt-section-wrapper[data-image-fit="contain"] .wt-hero-slide,
  .wt-section-wrapper[data-image-fit="contain"] .wt-v2-videohero,
  .wt-section-wrapper[data-image-fit="contain"] .wt-section-video-hero { min-height: auto; }
}

/* ── MOBILE 768px ── stacking, reduce padding ── */
@media (max-width: 768px) {
  .wt-v2-videoembed,
  .wt-v2-faq,
  .wt-v2-stats,
  .wt-v2-pricing,
  .wt-v2-trust,
  .wt-v2-cases,
  .wt-v2-reviews,
  .wt-v2-instagram,
  .wt-v2-timeline,
  .wt-v2-lookbook,
  .wt-v2-menu,
  .wt-v2-sched,
  .wt-v2-est,
  .wt-v2-lottie { padding: 40px 18px; }

  /* video-hero contenido más comprimido (el min-height lo define el preset) */
  .wt-v2-videohero-content { padding: 20px 16px; gap: 12px; }
  .wt-v2-videohero-cta { padding: 12px 28px; }

  /* video-embed frame */
  .wt-v2-videoembed-header { margin-bottom: 22px; }

  /* before-after-slider — handle más grande para touch */
  .wt-v2-ba-handle { width: 44px; height: 44px; touch-action: none; }
  .wt-v2-ba-slider-wrap { aspect-ratio: 1 / 1; }

  /* timeline horizontal scroll en tablet */
  .wt-v2-timeline-list[data-orient="horizontal"] { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* testimonials */
  .wt-testimonial-card,
  .wt-testimonials-carousel .wt-testimonial-card { padding: 28px 20px !important; min-width: 100% !important; }
  .wt-testimonial-card blockquote,
  .wt-testimonial-card p { font-size: 1rem !important; }

  /* hero-fullscreen tipografías y min-height en mobile */
  .wt-section-hero-fullscreen { min-height: clamp(380px, 65vh, 90vh); padding: 40px 16px; }
  .wt-hero-title { font-size: clamp(1.6rem, 6vw, 2.2rem) !important; }
  .wt-hero-subtitle { font-size: 1rem !important; }
  .wt-hero-logo { max-width: 140px !important; }
  /* Modo contain en mobile: sin padding vertical extra (el banner completo lo
     llena la imagen propia, no necesita reservar espacio para texto encima).
     v5.2: cubre los 3 tipos de hero. */
  .wt-section-wrapper[data-image-fit="contain"] .wt-section-hero-fullscreen,
  .wt-section-wrapper[data-image-fit="contain"] .wt-hero-slide,
  .wt-section-wrapper[data-image-fit="contain"] .wt-v2-videohero,
  .wt-section-wrapper[data-image-fit="contain"] .wt-section-video-hero {
    min-height: auto;
    padding: 0;
  }
}

/* ── PHONE 430px iPhone SE / 12 mini ── último ajuste ── */
@media (max-width: 430px) {
  .wt-v2-videoembed,
  .wt-v2-faq,
  .wt-v2-stats,
  .wt-v2-pricing,
  .wt-v2-trust,
  .wt-v2-cases,
  .wt-v2-reviews,
  .wt-v2-instagram,
  .wt-v2-timeline,
  .wt-v2-lookbook,
  .wt-v2-menu,
  .wt-v2-sched,
  .wt-v2-est,
  .wt-v2-lottie { padding: 32px 14px; }

  /* video-hero título más chico, CTA full width */
  .wt-v2-videohero-content { padding: 16px 14px; gap: 10px; }
  .wt-v2-videohero-title { font-size: clamp(1.5rem, 7vw, 2.2rem); }
  .wt-v2-videohero-subtitle { font-size: 0.95rem; }
  .wt-v2-videohero-cta { padding: 14px 24px; width: 100%; max-width: 320px; text-align: center; }

  /* video-embed — aspect-ratio reducido en mobile */
  .wt-v2-videoembed-frame[data-aspect="9:16"],
  .wt-v2-videoembed-frame[data-aspect="1:1"] { max-width: 100%; }

  /* before-after-slider — handle aún más grande en iPhone */
  .wt-v2-ba-handle { width: 48px; height: 48px; }
  .wt-v2-ba-label { font-size: 0.78rem; padding: 4px 10px; }

  /* pricing-table tier highlighted no debe escalar (lo aprieta) */
  .wt-v2-pricing-card { padding: 24px 18px; }
  .wt-v2-pricing-card[data-highlighted="true"] { transform: none; }
  .wt-v2-pricing-cta { width: 100%; }

  /* lookbook columns SIEMPRE 1 col en mobile */
  .wt-v2-lookbook-slide,
  .wt-v2-lookbook-grid { grid-template-columns: 1fr !important; }

  /* timeline estructura compacta */
  .wt-v2-timeline-item { padding-left: 36px; }

  /* faq-accordion pregunta más legible */
  .wt-v2-faq-q { font-size: 0.95rem; padding: 14px 16px; }
  .wt-v2-faq-a { padding: 0 16px 14px; font-size: 0.92rem; }

  /* interactive-menu tabs scrollable horizontalmente */
  .wt-v2-menu-tabs { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
  .wt-v2-menu-tab { white-space: nowrap; flex-shrink: 0; padding: 8px 14px; font-size: 0.88rem; }
  .wt-v2-menu-dish { grid-template-columns: 72px 1fr !important; gap: 10px; }
  .wt-v2-menu-dish-img { width: 72px !important; height: 72px !important; }

  /* class-schedule grid 1 col + slot legibles */
  .wt-v2-sched-day { font-size: 0.95rem; }
  .wt-v2-sched-slot { padding: 8px 10px; font-size: 0.88rem; }

  /* service-estimator inputs/selects 100% width + tipografía legible */
  .wt-v2-est-input,
  .wt-v2-est-select { width: 100%; font-size: 1rem; padding: 12px 14px; }

  /* emergency-banner */
  .wt-v2-emerg { padding: 10px 12px; }
  .wt-v2-emerg-text { font-size: 0.92rem; }

  /* testimonials — refuerzo (legacy) */
  .wt-testimonial-card,
  .wt-testimonials-carousel .wt-testimonial-card { padding: 24px 16px !important; }
  .wt-testimonial-card blockquote,
  .wt-testimonial-card p { font-size: 0.95rem !important; line-height: 1.5; }

  /* hero-fullscreen — ya cubierto en 768px, refuerzo CTA */
  .wt-hero-btn { padding: 12px 24px !important; min-height: 48px; width: 100%; max-width: 320px; text-align: center; }

  /* services-pricing — book button no debe quebrar (white-space) */
  .wt-pricing-book-btn { white-space: nowrap; padding: 8px 14px; font-size: 0.85rem; }
  .wt-pricing-name { font-size: 0.95rem; }
  .wt-pricing-price { font-size: 1.05rem; }

  /* footer-enhanced — gap menor en columnas */
  .wt-footer-inner { gap: 24px !important; padding: 32px 16px !important; }
  .wt-footer-heading { font-size: 0.95rem !important; margin-bottom: 8px; }
  .wt-footer-contact-item { font-size: 0.88rem; }

  /* header-ecommerce — barra unificada en iPhone */
  .wt-ecom-header-inner { padding: 6px 10px !important; gap: 6px !important; }
  .wt-ecom-search-input { padding: 8px 14px 8px 36px !important; font-size: 0.92rem; }
  .wt-ecom-search-icon { left: 12px !important; }
  .wt-ecom-action-btn { padding: 6px 10px !important; min-width: 40px; }
  .wt-ecom-cart-badge { right: -4px !important; top: -4px !important; min-width: 16px; height: 16px; font-size: 0.65rem; }
  .wt-ecom-nav-link { padding: 4px 8px !important; font-size: 0.72rem !important; }

  /* announcement-bar close button más pequeño */
  .wt-announce-close { font-size: 1.1rem; padding: 0 6px; }

  /* contact-form inputs full-width */
  .wt-contact-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
  .wt-contact-input,
  .wt-contact-textarea { width: 100%; padding: 10px 12px; font-size: 0.95rem; }

  /* newsletter — ya en 768px, refuerzo */
  .wt-newsletter { padding: 32px 14px !important; }
  .wt-newsletter-title { font-size: 1.3rem !important; }
}

/* ── ULTRA-NARROW 360px (iPhone SE 1st gen, Galaxy S5) ── */
@media (max-width: 360px) {
  .wt-v2-videohero-title { font-size: 1.4rem; }
  .wt-v2-videohero-subtitle { font-size: 0.9rem; }
  .wt-v2-pricing-card,
  .wt-v2-faq-list { margin: 0 -4px; }
  .wt-v2-menu-dish { grid-template-columns: 60px 1fr !important; }
  .wt-v2-menu-dish-img { width: 60px !important; height: 60px !important; }
}

/* ============================================================
   v4 (2026-04-25) — HERO FALLBACK GLOBAL (33 themes hero-fullscreen)
   Garantiza que NUNCA quede pantalla negra mientras carga la imagen
   o si la imagen falla. Aplica a TODOS los themes via .wt-section-hero-fullscreen.
   ============================================================ */
.wt-section-hero-fullscreen,
.wt-v2-videohero,
.wt-section-video-hero {
  /* Gradient fallback como background-color — visible si la imagen falla
     o aún no cargó. Usa el accent color del tenant (--blue) o azul oscuro. */
  background-color: color-mix(in srgb, var(--blue, #1e40af) 60%, #0a0a0a);
}

/* v4 (2026-04-25) — text-shadow MÁS FUERTE en hero title/subtitle/btn:
   Asegura legibilidad del texto AÚN si la imagen de fondo falla, demora,
   o tiene áreas claras. El text-shadow de 4 capas crea un halo oscuro
   sólido alrededor del texto blanco. Aplica a hero-fullscreen + video-hero. */
.wt-section-hero-fullscreen .wt-hero-title,
.wt-v2-videohero .wt-v2-videohero-title,
.wt-section-video-hero .wt-v2-videohero-title {
  text-shadow:
    0 2px 8px rgba(0,0,0,0.7),
    0 0 22px rgba(0,0,0,0.55),
    0 1px 2px rgba(0,0,0,0.95) !important;
  color: #ffffff !important;
}
.wt-section-hero-fullscreen .wt-hero-subtitle,
.wt-v2-videohero .wt-v2-videohero-subtitle,
.wt-section-video-hero .wt-v2-videohero-subtitle {
  text-shadow:
    0 2px 6px rgba(0,0,0,0.65),
    0 0 14px rgba(0,0,0,0.5),
    0 1px 2px rgba(0,0,0,0.9) !important;
  color: #ffffff !important;
  opacity: 1 !important;
}
.wt-section-hero-fullscreen .wt-hero-btn,
.wt-v2-videohero .wt-v2-videohero-cta,
.wt-section-video-hero .wt-v2-videohero-cta {
  box-shadow: 0 6px 20px rgba(0,0,0,0.45);
  font-weight: 700 !important;
}

/* Cuando NO hay overlay (imagen falla → solo gradient fallback), el contenido
   sigue legible porque el background-color ya es oscuro y el text-shadow es heavy. */
.wt-section-hero-fullscreen .wt-hero-overlay,
.wt-v2-videohero .wt-v2-videohero-overlay,
.wt-section-video-hero .wt-v2-videohero-overlay {
  pointer-events: none; /* No bloquea clicks en CTAs */
}

/* Min-height mobile responsivo para hero-fullscreen — antes 100vh forzaba
   un espacio enorme negro mientras cargaba la imagen Unsplash 1920px. */
@media (max-width: 768px) {
  .wt-section-hero-fullscreen {
    min-height: clamp(380px, 65vh, 80vh) !important;
    background-size: cover;
    background-position: center;
  }
  .wt-v2-videohero,
  .wt-section-video-hero {
    min-height: clamp(380px, 65vh, 80vh) !important;
  }
}
@media (max-width: 430px) {
  .wt-section-hero-fullscreen {
    min-height: clamp(360px, 55vh, 70vh) !important;
  }
  .wt-v2-videohero,
  .wt-section-video-hero {
    min-height: clamp(360px, 55vh, 70vh) !important;
  }
}

/* ============================================================
   v15p (2026-05-17) — MOBILE-FIRST HARDENING universal
   Owner OS Taller reportó "esto se ve horrible / imagen estirada"
   en iPhone Safari. Defense-in-depth para TODOS los themes:
   - Hero titles wrappean (no overflow horizontal).
   - Hero images con object-fit cover.
   - Tabs/chips horizontales con scroll suave.
   Aplicable a wt-section-hero-fullscreen + wt-aid-* + wt-am-* + wt-ec-* + etc.
   LEY [[feedback_law_mobile_first_always]].
   ============================================================ */
.wt-section-hero-fullscreen .wt-hero-title,
.wt-section-hero-fullscreen h1,
.wt-section-hero-fullscreen h2,
.wt-section [class*="hero-title"],
.wt-section [class*="-hero-title"] {
  overflow-wrap: anywhere;
  word-wrap: break-word;
  max-width: 100%;
  hyphens: auto;
}
.wt-section-hero-fullscreen img,
.wt-section-hero-fullscreen video,
.wt-v2-videohero img,
.wt-v2-videohero video {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
@media (max-width: 430px) {
  /* Hero CTAs full-width en mobile portrait — owner reportó "Cotizar ahora"
     se veía como link de texto naranja en vez de botón. */
  .wt-section-hero-fullscreen .wt-hero-btn,
  .wt-section-hero-fullscreen [class*="-hero-btn"],
  .wt-section-hero-fullscreen [class*="-hero-cta"] {
    display: inline-block;
    min-height: 48px;
    padding: 14px 28px !important;
    font-size: 0.95rem !important;
    line-height: 1.2;
  }
  /* Hero content padding generoso para no comer texto contra bordes. */
  .wt-section-hero-fullscreen .wt-hero-content,
  .wt-section-hero-fullscreen [class*="-hero-content"] {
    padding: 28px 18px !important;
  }
}

/* ============================================================
   v7 (2026-05-04e) — PREMIUM POLISH (nativo en web-sections.css)
   ============================================================
   Restaura las mejoras visuales que el v5 (web.css:1427-1569 commit d9fe954)
   aportaba al template y que se eliminaron por error en commit d649933 al
   diagnosticarse erroneamente como dead code. Va aqui (no en web.css) para
   que la cascade order beneficie la specificity (web-sections.css se carga
   despues y pisa al base).

   Cobertura UNIVERSAL: usa solo vars var(--blue), var(--text), var(--bg),
   var(--bg2), var(--card), var(--line) — todas estandarizadas en :root y
   redefinidas por cada uno de los 41 themes (14 businessType). Cubre los
   14 presets sin tocar cada archivo individualmente.

   Cita user 2026-05-04e: "el diseño ahora parece pobre, sin sentido, no es
   llamativo, no es premium" / "fondo blanco asi sin nada parece muy pobre".
   ============================================================ */

/* Section padding amplio en desktop — da respiro premium */
@media (min-width: 1024px) {
  .wt-v2-faq,
  .wt-v2-trust,
  .wt-v2-timeline,
  .wt-v2-reviews,
  .wt-v2-stats,
  .wt-v2-pricing,
  .wt-v2-cases,
  .wt-v2-est,
  .wt-v2-features,
  .wt-v2-team,
  .wt-v2-gallery {
    padding: 96px 24px;
  }
}

/* Background alternado entre secciones (sutil) — da ritmo visual y separa.
   v8 (2026-05-04f): EXCLUIR footer enhanced y contact-form (tienen bg propio).
   Sin esto, el polish nth-child pisaba var(--web-footer-bg) del footer y dejaba
   el footer claro en lugar de oscuro. Cliente ospremium reporto que footer en
   DEV se veia "blanco" vs PROD oscuro premium. */
.wt-section-wrapper:nth-child(even) > .wt-section:not(.wt-section-footer-enhanced):not(.wt-section-footer):not(.wt-section-contact-form),
.wt-section-wrapper:nth-child(even) > section.wt-section:not(.wt-section-footer-enhanced):not(.wt-section-footer):not(.wt-section-contact-form) {
  background: var(--bg2, var(--web-bg-alt, #f8fafc));
}
.wt-section-wrapper:nth-child(odd) > .wt-section:not(.wt-section-footer-enhanced):not(.wt-section-footer):not(.wt-section-contact-form),
.wt-section-wrapper:nth-child(odd) > section.wt-section:not(.wt-section-footer-enhanced):not(.wt-section-footer):not(.wt-section-contact-form) {
  background: var(--bg, var(--web-bg, #ffffff));
}

/* v8: footer enhanced mantiene su propio bg oscuro, immune al polish nth-child.
   --web-footer-bg default #111 + override defensive con !important para evitar
   que cualquier futuro selector de mayor specificity lo pise. */
.wt-section-wrapper > .wt-section-footer-enhanced,
.wt-section-wrapper > .wt-section.wt-section-footer-enhanced {
  background: var(--web-footer-bg, #111) !important;
}

/* FAQ premium: cards con shadow + hover lift */
.wt-v2-faq-item {
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 8px 24px color-mix(in srgb, var(--text, #1e293b) 4%, transparent);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.wt-v2-faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08), 0 16px 40px color-mix(in srgb, var(--blue, #2563eb) 10%, transparent);
  border-color: color-mix(in srgb, var(--blue, #2563eb) 25%, var(--line, #e2e8f0));
}

/* Timeline premium — vertical orientation */
.wt-v2-timeline-list[data-orientation="vertical"]::before {
  background: linear-gradient(
    180deg,
    var(--blue, #2563eb) 0%,
    color-mix(in srgb, var(--blue, #2563eb) 35%, transparent) 100%
  );
  width: 3px;
  border-radius: 2px;
}
.wt-v2-timeline-list[data-orientation="vertical"] .wt-v2-timeline-item {
  background: var(--card, #ffffff);
  border: 1px solid var(--line, #e2e8f0);
  border-radius: 14px;
  padding: 22px 24px 22px 80px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 12px 32px color-mix(in srgb, var(--text, #1e293b) 5%, transparent);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.wt-v2-timeline-list[data-orientation="vertical"] .wt-v2-timeline-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06), 0 20px 48px color-mix(in srgb, var(--blue, #2563eb) 12%, transparent);
  border-color: color-mix(in srgb, var(--blue, #2563eb) 30%, var(--line, #e2e8f0));
}

/* Date badges premium con accent color */
.wt-v2-timeline-date {
  background: color-mix(in srgb, var(--blue, #2563eb) 15%, transparent);
  color: var(--blue, #2563eb);
  border: 1px solid color-mix(in srgb, var(--blue, #2563eb) 28%, transparent);
  padding: 4px 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

/* Timeline horizontal — cards similares pero hover lift up */
.wt-v2-timeline-list[data-orientation="horizontal"] .wt-v2-timeline-item {
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 12px 32px color-mix(in srgb, var(--text, #1e293b) 5%, transparent);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.wt-v2-timeline-list[data-orientation="horizontal"] .wt-v2-timeline-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06), 0 20px 48px color-mix(in srgb, var(--blue, #2563eb) 12%, transparent);
}

/* Trust badges premium — grid envolvente como card distintivo */
.wt-v2-trust {
  background: color-mix(in srgb, var(--blue, #2563eb) 3%, var(--bg2, var(--web-bg-alt, #f8fafc)));
}
.wt-v2-trust-grid {
  background: var(--card, #ffffff);
  border-radius: 18px;
  padding: 32px 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04), 0 16px 48px color-mix(in srgb, var(--text, #1e293b) 5%, transparent);
  border: 1px solid var(--line, #e2e8f0);
}
.wt-v2-trust-item {
  padding: 16px 12px;
  border-radius: 12px;
  transition: background 0.2s, transform 0.2s;
}
.wt-v2-trust-item:hover {
  background: color-mix(in srgb, var(--blue, #2563eb) 5%, transparent);
  transform: translateY(-3px);
}

/* Reviews premium — bg sutil + cards con shadow profundo */
.wt-v2-reviews {
  background: color-mix(in srgb, var(--blue, #2563eb) 2%, var(--bg2, var(--web-bg-alt, #f8fafc)));
}
.wt-v2-reviews-card {
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 12px 32px color-mix(in srgb, var(--text, #1e293b) 5%, transparent);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wt-v2-reviews-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06), 0 24px 56px color-mix(in srgb, var(--blue, #2563eb) 12%, transparent);
}

/* Empty review card premium (no hay reseñas) — bg distintivo */
.wt-v2-reviews-empty,
.wt-v2-reviews-loading {
  background: var(--card, #ffffff);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 1px 3px rgba(0,0,0,0.04);
}

/* FAQ accordion premium — query hover + arrow accent */
.wt-v2-faq-q:hover {
  background: color-mix(in srgb, var(--blue, #2563eb) 6%, transparent);
}
.wt-v2-faq-arrow {
  color: var(--blue, #2563eb);
  font-weight: 900;
}

/* Stats label legible y elegante */
.wt-v2-stats-item {
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 12px 32px color-mix(in srgb, var(--text, #1e293b) 5%, transparent);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wt-v2-stats-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06), 0 24px 56px color-mix(in srgb, var(--blue, #2563eb) 14%, transparent);
}

/* ============================================================
   EMPTY STATE POLISH v8 (2026-05-04f)
   Origen: cliente DEV os.app.fujistore.com.py/web reportaba
   franjas blancas vacias "ROTISIMO" en secciones brands/blog/news
   sin contenido configurado. Las secciones tenian padding fijo +
   placeholder text plano sin estilo. Fix: card dashed centered
   con icono + theme-aware bg + indicacion clara de configurar.
   Decision user: estilizar como card premium (no ocultar). */

@media (min-width: 1024px) {
  .wt-section-brands-carousel,
  .wt-section-blog,
  .wt-section-news,
  .wt-section-publications {
    padding: 96px 24px;
  }
}

.wt-brands-placeholder,
.wt-section-blog .wt-empty-state,
.wt-section-news .wt-empty,
.wt-no-content,
.wt-empty-state {
  background: var(--card, #ffffff);
  border: 1.5px dashed color-mix(in srgb, var(--blue, #2563eb) 35%, transparent);
  border-radius: 14px;
  padding: 56px 32px;
  margin: 0 auto;
  max-width: 720px;
  text-align: center;
  color: color-mix(in srgb, var(--text, #1e293b) 70%, transparent);
  font-size: 0.95rem;
  font-style: italic;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  position: relative;
}

.wt-brands-placeholder::before,
.wt-section-blog .wt-empty-state::before,
.wt-section-news .wt-empty::before,
.wt-empty-state::before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--blue, #2563eb) 12%, transparent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Cpath d='M3 9h18M9 21V9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
  opacity: 0.7;
}

/* Empty state padding mobile reducido */
@media (max-width: 768px) {
  .wt-brands-placeholder,
  .wt-section-blog .wt-empty-state,
  .wt-section-news .wt-empty,
  .wt-no-content,
  .wt-empty-state {
    padding: 40px 20px;
    font-size: 0.9rem;
    max-width: calc(100vw - 32px);
  }
}
