    /* ================================================================
       CSS GLOBAL — PEGAR EN: Tema > Avanzado > CSS personalizado
       ================================================================ */

    :root {
      --red:       #E74C3C;
      --red-dk:    #C0392B;
      --red-lt:    #FFEEED;
      --red-mid:   #FADDDB;
      --dark:      #1A1A1A;
      --mid:       #555555;
      --soft:      #888888;
      --light:     #F8F8F8;
      --white:     #FFFFFF;
      --border:    #EBEBEB;
      --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
      --shadow-md: 0 6px 24px rgba(0,0,0,.10);
      --shadow-lg: 0 16px 48px rgba(0,0,0,.14);
      --r:         8px;
      --r-lg:      16px;
      --trans:     .28s ease;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Poppins', sans-serif;
      color: var(--dark);
      background: var(--white);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    .container {
      width: 100%;
      max-width: 1200px;
      margin-inline: auto;
      padding-inline: 24px;
    }

    /* ── LABEL / EYEBROW ── */
    .lb-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 11px; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; color: var(--red);
      margin-bottom: 12px;
    }
    .lb-eyebrow::before {
      content: ''; width: 20px; height: 2px;
      background: var(--red); border-radius: 2px; flex-shrink: 0;
    }

    /* ── SECTION HEADERS ── */
    .lb-section-head { text-align: center; margin-bottom: 48px; }
    .lb-section-head h2 { font-size: clamp(26px,3.5vw,40px); font-weight: 700; line-height: 1.2; margin-bottom: 12px; }
    .lb-section-head p { font-size: 16px; color: var(--mid); max-width: 520px; margin-inline: auto; line-height: 1.7; }

    /* ── BUTTONS ── */
    .lb-btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600;
      padding: 13px 26px; border-radius: 6px; border: 2px solid transparent;
      cursor: pointer; transition: var(--trans); white-space: nowrap;
    }
    .lb-btn-primary { background: var(--red); color: #fff; border-color: var(--red); }
    .lb-btn-primary:hover { background: var(--red-dk); border-color: var(--red-dk); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(231,76,60,.35); }
    .lb-btn-outline { background: transparent; color: var(--red); border-color: var(--red); }
    .lb-btn-outline:hover { background: var(--red); color: #fff; transform: translateY(-1px); }
    .lb-btn-dark { background: var(--dark); color: #fff; border-color: var(--dark); }
    .lb-btn-dark:hover { background: #333; transform: translateY(-1px); }
    .lb-btn-white { background: #fff; color: var(--red); border-color: #fff; font-weight: 700; }
    .lb-btn-white:hover { background: var(--red-lt); transform: translateY(-1px); }
    .lb-btn-wa { background: #25D366; color: #fff; border-color: #25D366; }
    .lb-btn-wa:hover { background: #1ebe5d; border-color: #1ebe5d; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,.35); }

    /* ── SCROLL REVEAL ── */
    .lb-reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
    .lb-reveal.lb-visible { opacity: 1; transform: none; }
    .lb-delay-1 { transition-delay: .10s; }
    .lb-delay-2 { transition-delay: .20s; }
    .lb-delay-3 { transition-delay: .30s; }
    .lb-delay-4 { transition-delay: .40s; }

    /* ================================================================
       TOPBAR
       [NATIVO TN] — configurar en: Personalizar > Encabezado > Barra
       ================================================================ */
    .lb-topbar {
      background: var(--dark); color: rgba(255,255,255,.7);
      font-size: 12px; font-weight: 400; padding: 9px 0;
    }
    .lb-topbar .container {
      display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
    }
    .lb-topbar-left { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
    .lb-topbar-pill {
      display: flex; align-items: center; gap: 5px;
    }
    .lb-topbar-pill strong { color: #fff; }
    .lb-topbar-right { display: flex; gap: 16px; }
    .lb-topbar-right a { color: rgba(255,255,255,.6); transition: color .2s; }
    .lb-topbar-right a:hover { color: #fff; }

    /* ================================================================
       HEADER / NAV
       [NATIVO TN] — personalizar en: Personalizar > Encabezado
       ================================================================ */
    .lb-header {
      position: sticky; top: 0; z-index: 200;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 1px 0 var(--border), 0 2px 12px rgba(0,0,0,.05);
    }
    .lb-nav {
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 0; gap: 24px;
    }
    .lb-logo img { height: 44px; width: auto; }
    .lb-nav-links {
      display: flex; align-items: center; gap: 4px;
    }
    .lb-nav-link {
      font-size: 13px; font-weight: 600; color: var(--dark);
      padding: 8px 14px; border-radius: 6px;
      transition: var(--trans); letter-spacing: .02em;
      text-transform: uppercase;
    }
    .lb-nav-link:hover { color: var(--red); background: var(--red-lt); }
    .lb-nav-link-cta {
      background: var(--red); color: #fff !important;
      padding: 9px 18px; border-radius: 6px;
      font-size: 12px; font-weight: 700; letter-spacing: .04em;
      transition: var(--trans);
    }
    .lb-nav-link-cta:hover { background: var(--red-dk) !important; }
    .lb-nav-actions { display: flex; align-items: center; gap: 10px; }
    .lb-nav-icon {
      display: flex; align-items: center; justify-content: center;
      width: 38px; height: 38px; border-radius: 6px;
      border: 1px solid var(--border); color: var(--mid);
      cursor: pointer; transition: var(--trans); background: var(--white);
    }
    .lb-nav-icon:hover { border-color: var(--red); color: var(--red); background: var(--red-lt); }
    .lb-cart-wrap { position: relative; }
    .lb-cart-wrap sup {
      position: absolute; top: -4px; right: -4px;
      background: var(--red); color: #fff;
      font-size: 9px; font-weight: 700; min-width: 16px; height: 16px;
      border-radius: 8px; display: flex; align-items: center; justify-content: center;
      padding: 0 3px; line-height: 1;
    }

    /* ================================================================
       TICKER PROMOS
       [CUSTOM HTML] — sección HTML personalizada en la home
       ================================================================ */
    .lb-ticker {
      background: var(--red); overflow: hidden; position: relative;
    }
    .lb-ticker-track {
      display: flex; animation: lb-ticker-scroll 30s linear infinite;
      width: max-content;
    }
    .lb-ticker-track:hover { animation-play-state: paused; }
    .lb-ticker-item {
      display: flex; align-items: center; gap: 10px;
      padding: 11px 36px;
      font-size: 12px; font-weight: 600; color: #fff;
      letter-spacing: .05em; white-space: nowrap;
    }
    .lb-ticker-dot { width: 4px; height: 4px; background: rgba(255,255,255,.4); border-radius: 50%; flex-shrink: 0; }
    @keyframes lb-ticker-scroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ================================================================
       HERO
       [CUSTOM HTML] — sección HTML personalizada en la home
       ================================================================ */
    .lb-hero {
      background: var(--white);
      padding: 0;
      overflow: hidden;
      border-bottom: 1px solid var(--border);
    }
    .lb-hero-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      min-height: 560px;
    }
    .lb-hero-content {
      display: flex; flex-direction: column; justify-content: center;
      padding: 60px 48px 60px 0;
    }
    .lb-hero-title {
      font-size: clamp(34px, 4vw, 54px);
      font-weight: 800; line-height: 1.1;
      margin-bottom: 16px; color: var(--dark);
      letter-spacing: -.02em;
    }
    .lb-hero-title span { color: var(--red); display: block; }
    .lb-hero-subtitle {
      font-size: 16px; color: var(--mid); line-height: 1.7;
      margin-bottom: 28px; font-weight: 400;
      max-width: 440px;
    }
    .lb-hero-badges {
      display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px;
    }
    .lb-hero-badge {
      display: flex; align-items: center; gap: 7px;
      font-size: 13px; font-weight: 500; color: var(--dark);
      background: var(--light); border: 1px solid var(--border);
      padding: 7px 14px; border-radius: 100px;
    }
    .lb-hero-badge svg { color: var(--red); flex-shrink: 0; }
    .lb-hero-ctas { display: flex; flex-wrap: wrap; gap: 10px; }

    .lb-hero-visual {
      position: relative; overflow: hidden;
      background: var(--red-lt);
    }
    .lb-hero-img {
      width: 100%; height: 100%; object-fit: cover;
      display: block;
    }
    .lb-hero-price-tag {
      position: absolute; bottom: 50px; left: 32px;
      background: var(--white);
      border-radius: var(--r-lg); padding: 18px 24px;
      box-shadow: var(--shadow-lg);
    }
    .lb-hero-price-label { font-size: 11px; color: var(--soft); font-weight: 500; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
    .lb-hero-price-val { font-size: 28px; font-weight: 800; color: var(--red); line-height: 1; }
    .lb-hero-price-sub { font-size: 11px; color: var(--mid); margin-top: 4px; }
    .lb-hero-discount-tag {
      position: absolute; top: 28px; right: 28px;
      background: var(--red); color: #fff;
      border-radius: 100px; padding: 8px 16px;
      font-size: 14px; font-weight: 800; letter-spacing: .02em;
    }

    /* ================================================================
       BENEFICIOS RÁPIDOS (ICONOS BARRA)
       [CUSTOM HTML]
       ================================================================ */
    .lb-quickbens {
      background: var(--light); border-bottom: 1px solid var(--border);
      padding: 28px 0;
    }
    .lb-quickbens-grid {
      display: flex; justify-content: space-around; flex-wrap: wrap; gap: 24px;
    }
    .lb-quickben {
      display: flex; align-items: center; gap: 12px;
    }
    .lb-quickben-icon {
      width: 44px; height: 44px; border-radius: 10px;
      background: var(--white); border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      color: var(--red); flex-shrink: 0;
    }
    .lb-quickben-text strong { font-size: 14px; font-weight: 700; display: block; color: var(--dark); }
    .lb-quickben-text span { font-size: 12px; color: var(--soft); }

    /* ================================================================
       INSTITUCIONAL
       [CUSTOM HTML]
       ================================================================ */
    .lb-inst { padding: 80px 0; background: var(--white); }
    .lb-inst-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
    }
    .lb-inst-text { font-size: 16px; color: var(--mid); line-height: 1.8; margin-bottom: 32px; }
    .lb-inst-stats {
      display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px;
    }
    .lb-inst-stat {
      background: var(--light); border: 1px solid var(--border);
      border-radius: var(--r-lg); padding: 22px;
      transition: var(--trans);
    }
    .lb-inst-stat:hover { border-color: var(--red); box-shadow: var(--shadow-sm); }
    .lb-inst-stat-num {
      font-size: 36px; font-weight: 800; color: var(--red); line-height: 1;
    }
    .lb-inst-stat-label { font-size: 12px; color: var(--mid); margin-top: 6px; line-height: 1.4; font-weight: 500; }

    .lb-inst-visual { position: relative; }
    .lb-inst-photo {
      width: 100%; height: 440px; object-fit: cover;
      border-radius: var(--r-lg);
    }
    .lb-inst-photo-placeholder {
      width: 100%; height: 440px;
      background: linear-gradient(135deg, var(--red-lt) 0%, var(--red-mid) 100%);
      border-radius: var(--r-lg);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 12px; color: var(--red); font-size: 13px; font-weight: 500;
    }
    .lb-inst-deco {
      position: absolute; bottom: -16px; right: -16px;
      width: 120px; height: 120px; border-radius: var(--r-lg);
      background: var(--red); opacity: .1; z-index: -1;
    }

    /* ================================================================
       CATEGORÍAS
       [NATIVO TN] o [CUSTOM HTML]
       En TN: usar el bloque "Categorías" nativo del tema +
       personalizar apariencia con CSS global.
       ================================================================ */
    .lb-cats { padding: 72px 0; background: var(--light); }
    .lb-cats-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    }
    .lb-cat-card {
      position: relative; border-radius: var(--r-lg); overflow: hidden;
      cursor: pointer; transition: var(--trans);
      min-height: 240px; display: flex; align-items: flex-end;
    }
    .lb-cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
    .lb-cat-bg {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      transition: transform .5s ease;
    }
    .lb-cat-card:hover .lb-cat-bg { transform: scale(1.06); }
    /* Gradientes de fondo para cada categoría */
    .lb-cat-bg-1 { background: linear-gradient(145deg, #1a0a0a 0%, #3a1010 100%); }
    .lb-cat-bg-2 { background: linear-gradient(145deg, #10101a 0%, #10183a 100%); }
    .lb-cat-bg-3 { background: linear-gradient(145deg, #0a100a 0%, #10301a 100%); }
    .lb-cat-bg-4 { background: linear-gradient(145deg, #1a1a0a 0%, #3a3010 100%); }
    .lb-cat-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(0deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.1) 55%, transparent 100%);
    }
    .lb-cat-content {
      position: relative; z-index: 2; padding: 22px;
    }
    .lb-cat-content h3 {
      font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 4px;
    }
    .lb-cat-content p {
      font-size: 12px; color: rgba(255,255,255,.6); margin-bottom: 14px; line-height: 1.5;
    }
    .lb-cat-link {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 12px; font-weight: 700; color: #fff;
      text-transform: uppercase; letter-spacing: .06em;
      padding: 7px 14px; border-radius: 4px;
      background: var(--red); transition: var(--trans);
    }
    .lb-cat-card:hover .lb-cat-link { background: var(--red-dk); }

    /* ================================================================
       DESCANSO ES SALUD
       [CUSTOM HTML]
       ================================================================ */
    .lb-salud {
      padding: 80px 0;
      background: var(--dark);
      position: relative; overflow: hidden;
    }
    .lb-salud::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse at 15% 50%, rgba(231,76,60,.18) 0%, transparent 55%);
    }
    .lb-salud-grid {
      position: relative; z-index: 2;
      display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
    }
    .lb-salud-eyebrow { color: var(--red); }
    .lb-salud-eyebrow::before { background: var(--red); }
    .lb-salud-title {
      font-size: clamp(28px,3.5vw,44px); font-weight: 800;
      color: #fff; line-height: 1.15; margin-bottom: 16px;
    }
    .lb-salud-title em { font-style: normal; color: var(--red); }
    .lb-salud-text { font-size: 16px; color: rgba(255,255,255,.6); line-height: 1.75; margin-bottom: 32px; font-weight: 400; }
    .lb-salud-points { display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; }
    .lb-salud-point { display: flex; gap: 14px; align-items: flex-start; }
    .lb-salud-point-icon {
      width: 40px; height: 40px; flex-shrink: 0;
      background: rgba(231,76,60,.15); border: 1px solid rgba(231,76,60,.3);
      border-radius: 10px; display: flex; align-items: center; justify-content: center;
      color: var(--red);
    }
    .lb-salud-point h4 { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 3px; }
    .lb-salud-point p { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.6; }
    .lb-salud-visual {
      border-radius: var(--r-lg); overflow: hidden;
    }
    .lb-salud-img {
      width: 100%; height: 420px; object-fit: cover;
    }
    .lb-salud-placeholder {
      width: 100%; height: 420px;
      background: linear-gradient(135deg, #2a0a0a, #1a1a1a);
      border-radius: var(--r-lg);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 12px; color: rgba(255,255,255,.2); font-size: 12px; text-align: center;
      border: 1px solid rgba(255,255,255,.06);
    }

    /* ================================================================
       PRODUCTOS DESTACADOS
       [NATIVO TN] — usar bloque "Productos destacados" nativo del tema
       Estilizar con el CSS global (.lb-product-card etc.)
       Para referencia visual, se incluye el HTML de las cards.
       ================================================================ */
    .lb-productos { padding: 80px 0; background: var(--white); }
    .lb-products-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    }
    .lb-product-card {
      border: 1px solid var(--border); border-radius: var(--r-lg);
      overflow: hidden; transition: var(--trans); background: var(--white);
    }
    .lb-product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
    .lb-product-img-wrap {
      position: relative; overflow: hidden;
      background: var(--red-lt);
      height: 220px;
    }
    .lb-product-img-wrap img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .5s ease;
    }
    .lb-product-card:hover .lb-product-img-wrap img { transform: scale(1.05); }
    .lb-product-badge {
      position: absolute; top: 12px; left: 12px; z-index: 2;
      font-size: 11px; font-weight: 700; letter-spacing: .04em;
      padding: 4px 10px; border-radius: 4px;
      text-transform: uppercase;
    }
    .lb-badge-red { background: var(--red); color: #fff; }
    .lb-badge-green { background: #27AE60; color: #fff; }
    .lb-badge-dark { background: var(--dark); color: #fff; }
    .lb-product-img-placeholder {
      width: 100%; height: 100%;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 8px; color: var(--red); font-size: 12px; font-weight: 500;
    }
    .lb-product-body { padding: 20px; }
    .lb-product-tag {
      font-size: 11px; font-weight: 700; color: var(--red);
      text-transform: uppercase; letter-spacing: .07em; margin-bottom: 5px;
    }
    .lb-product-name {
      font-size: 18px; font-weight: 700; color: var(--dark);
      margin-bottom: 6px; line-height: 1.3;
    }
    .lb-product-desc {
      font-size: 13px; color: var(--mid); line-height: 1.6; margin-bottom: 16px;
    }
    .lb-product-pricing { margin-bottom: 16px; }
    .lb-product-price-main { font-size: 24px; font-weight: 800; color: var(--dark); }
    .lb-product-price-off { font-size: 13px; color: var(--soft); text-decoration: line-through; margin-left: 6px; }
    .lb-product-price-badge {
      display: inline-block; background: var(--red); color: #fff;
      font-size: 11px; font-weight: 700; padding: 2px 7px; border-radius: 4px; margin-left: 6px;
    }
    .lb-product-price-sub { font-size: 12px; color: var(--mid); margin-top: 4px; }
    .lb-product-price-transfer { font-size: 12px; color: #27AE60; font-weight: 600; margin-top: 3px; }
    .lb-product-actions { display: flex; gap: 8px; }
    .lb-product-actions .lb-btn { flex: 1; padding: 11px 14px; font-size: 13px; }
    .lb-products-cta { text-align: center; margin-top: 40px; }

    /* ================================================================
       ¿POR QUÉ ELEGIR LA BELLA?
       [CUSTOM HTML]
       ================================================================ */
    .lb-porque { padding: 72px 0; background: var(--light); }
    .lb-porque-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px;
    }
    .lb-porque-card {
      background: var(--white); border: 1px solid var(--border);
      border-radius: var(--r-lg); padding: 32px 24px; text-align: center;
      transition: var(--trans); cursor: default;
    }
    .lb-porque-card:hover { border-color: var(--red); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
    .lb-porque-icon {
      width: 60px; height: 60px; border-radius: 14px;
      background: var(--red-lt); display: flex; align-items: center; justify-content: center;
      color: var(--red); margin: 0 auto 18px;
      transition: var(--trans);
    }
    .lb-porque-card:hover .lb-porque-icon { background: var(--red); color: #fff; }
    .lb-porque-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
    .lb-porque-card p { font-size: 13px; color: var(--mid); line-height: 1.65; }

    /* ================================================================
       PROMOS
       [CUSTOM HTML]
       ================================================================ */
    .lb-promos {
      padding: 72px 0;
      background: var(--red);
      position: relative; overflow: hidden;
    }
    .lb-promos::before {
      content: ''; position: absolute; inset: 0;
      background:
        radial-gradient(ellipse at 80% 50%, rgba(255,255,255,.1) 0%, transparent 55%),
        repeating-linear-gradient(45deg, transparent, transparent 38px, rgba(255,255,255,.04) 38px, rgba(255,255,255,.04) 39px);
    }
    .lb-promos-grid {
      position: relative; z-index: 2;
      display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
    }
    .lb-promos-eyebrow { color: rgba(255,255,255,.7); }
    .lb-promos-eyebrow::before { background: rgba(255,255,255,.5); }
    .lb-promos-title { font-size: clamp(28px,3.5vw,44px); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 14px; }
    .lb-promos-text { font-size: 16px; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 28px; }
    .lb-promo-list { display: flex; flex-direction: column; gap: 12px; }
    .lb-promo-item {
      display: flex; gap: 14px; align-items: center;
      background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,.2); border-radius: 10px; padding: 16px 20px; color: #fff;
    }
    .lb-promo-item-icon { font-size: 22px; flex-shrink: 0; }
    .lb-promo-item h4 { font-size: 14px; font-weight: 700; }
    .lb-promo-item p { font-size: 12px; opacity: .75; margin-top: 2px; }

    /* ================================================================
       TESTIMONIOS
       [CUSTOM HTML]
       ================================================================ */
    .lb-testimonios { padding: 80px 0; background: var(--white); }
    .lb-testi-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px;
    }
    .lb-testi-card {
      background: var(--light); border: 1px solid var(--border);
      border-radius: var(--r-lg); padding: 28px;
      transition: var(--trans);
    }
    .lb-testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: transparent; }
    .lb-testi-stars { color: #F39C12; font-size: 16px; letter-spacing: 1px; margin-bottom: 14px; }
    .lb-testi-text {
      font-size: 14px; line-height: 1.75; color: var(--mid);
      margin-bottom: 20px; font-style: italic;
    }
    .lb-testi-text::before { content: '"'; }
    .lb-testi-text::after  { content: '"'; }
    .lb-testi-author { display: flex; align-items: center; gap: 12px; }
    .lb-testi-avatar {
      width: 42px; height: 42px; border-radius: 50%;
      background: var(--red); color: #fff;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; font-weight: 800; flex-shrink: 0;
    }
    .lb-testi-name { font-size: 14px; font-weight: 700; color: var(--dark); }
    .lb-testi-city { font-size: 12px; color: var(--soft); }
    .lb-testi-footer { text-align: center; margin-top: 36px; }
    .lb-testi-google-link {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 13px; font-weight: 600; color: var(--mid);
      border: 1px solid var(--border); border-radius: 6px;
      padding: 10px 20px; transition: var(--trans);
    }
    .lb-testi-google-link:hover { border-color: var(--red); color: var(--red); }

    /* ================================================================
       CÓMO COMPRAR
       [CUSTOM HTML]
       ================================================================ */
    .lb-como { padding: 72px 0; background: var(--light); }
    .lb-steps {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 0; margin-top: 48px; position: relative;
    }
    .lb-steps::before {
      content: ''; position: absolute;
      top: 38px; left: calc(16.6% + 19px); right: calc(16.6% + 19px);
      height: 2px; background: var(--red-mid); z-index: 0;
    }
    .lb-step { text-align: center; padding: 0 28px; position: relative; z-index: 1; }
    .lb-step-num {
      width: 56px; height: 56px; border-radius: 50%;
      background: var(--red); color: #fff;
      font-size: 22px; font-weight: 800;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 22px;
      box-shadow: 0 4px 16px rgba(231,76,60,.35);
    }
    .lb-step h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
    .lb-step p { font-size: 13px; color: var(--mid); line-height: 1.65; }
    .lb-delivery-box {
      margin-top: 44px; background: var(--white); border: 1px solid var(--border);
      border-radius: var(--r-lg); padding: 26px 32px;
      display: flex; align-items: center; gap: 18px;
    }
    .lb-delivery-box-icon { color: var(--red); flex-shrink: 0; }
    .lb-delivery-box h4 { font-size: 15px; font-weight: 700; margin-bottom: 5px; }
    .lb-delivery-box p { font-size: 13px; color: var(--mid); line-height: 1.6; }

    /* ================================================================
       CTA FINAL
       [CUSTOM HTML]
       ================================================================ */
    .lb-cta-final {
      padding: 90px 0; background: var(--dark); text-align: center;
      position: relative; overflow: hidden;
    }
    .lb-cta-final::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse at 50% 60%, rgba(231,76,60,.2) 0%, transparent 65%);
    }
    .lb-cta-final .container { position: relative; z-index: 2; }
    .lb-cta-final-eyebrow { color: var(--red); justify-content: center; }
    .lb-cta-final-eyebrow::before { background: var(--red); }
    .lb-cta-final h2 { font-size: clamp(30px,4vw,52px); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 14px; }
    .lb-cta-final-sub { font-size: 17px; color: rgba(255,255,255,.5); margin-bottom: 44px; font-weight: 400; }
    .lb-cta-final-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

    /* ================================================================
       FOOTER
       [NATIVO TN] — personalizar en: Personalizar > Pie de página
       Se incluye HTML de referencia para el diseño.
       ================================================================ */
    .lb-footer { background: #111; padding: 56px 0 0; }
    .lb-footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
      padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .lb-footer-logo { display: block; margin-bottom: 16px; }
    .lb-footer-logo img { height: 36px; width: auto; filter: brightness(0) invert(1); opacity: .9; }
    .lb-footer-desc { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.75; max-width: 260px; }
    .lb-footer-socials { display: flex; gap: 8px; margin-top: 20px; }
    .lb-footer-social {
      width: 34px; height: 34px; border-radius: 7px;
      border: 1px solid rgba(255,255,255,.12);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.4); transition: var(--trans);
    }
    .lb-footer-social:hover { border-color: var(--red); color: var(--red); }
    .lb-footer-col h4 {
      font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
      color: #fff; margin-bottom: 18px;
    }
    .lb-footer-col ul { display: flex; flex-direction: column; gap: 9px; }
    .lb-footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.4); transition: color .2s; }
    .lb-footer-col ul li a:hover { color: #fff; }
    .lb-footer-contact-row { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 10px; }
    .lb-footer-contact-row svg { flex-shrink: 0; margin-top: 1px; color: var(--red); }
    .lb-footer-contact-row span { font-size: 12px; color: rgba(255,255,255,.4); line-height: 1.5; }
    .lb-footer-bottom {
      padding: 18px 0; display: flex; justify-content: space-between;
      align-items: center; gap: 16px; flex-wrap: wrap;
      font-size: 11px; color: rgba(255,255,255,.25);
    }
    .lb-footer-bottom a { color: rgba(255,255,255,.25); }
    .lb-footer-bottom a:hover { color: rgba(255,255,255,.6); }

    /* ================================================================
       WA FLOTANTE
       [CUSTOM HTML] — pegar al final de la página
       ================================================================ */
    .lb-wa-float {
      position: fixed; bottom: 24px; right: 24px; z-index: 9999;
      width: 54px; height: 54px; border-radius: 50%;
      background: #25D366; color: #fff;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 18px rgba(37,211,102,.5);
      transition: var(--trans); cursor: pointer;
      animation: lb-wa-pulse 2.5s infinite;
    }
    .lb-wa-float:hover { transform: scale(1.12); box-shadow: 0 8px 28px rgba(37,211,102,.65); }
    @keyframes lb-wa-pulse {
      0%, 100% { box-shadow: 0 4px 18px rgba(37,211,102,.5); }
      50%       { box-shadow: 0 4px 28px rgba(37,211,102,.75); }
    }

    /* ================================================================
       RESPONSIVE
       ================================================================ */
    @media (max-width: 1024px) {
      .lb-porque-grid { grid-template-columns: 1fr 1fr; }
      .lb-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .lb-cats-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .lb-topbar { display: none; }
      .lb-nav-links { display: none; }
      .lb-hero-inner { grid-template-columns: 1fr; }
      .lb-hero-content { padding: 48px 0; }
      .lb-hero-visual { display: none; }
      .lb-inst-grid { grid-template-columns: 1fr; gap: 40px; }
      .lb-inst-visual { display: none; }
      .lb-cats-grid { grid-template-columns: 1fr 1fr; }
      .lb-salud-grid { grid-template-columns: 1fr; gap: 40px; }
      .lb-salud-visual { display: none; }
      .lb-products-grid { grid-template-columns: 1fr; }
      .lb-porque-grid { grid-template-columns: 1fr; }
      .lb-promos-grid { grid-template-columns: 1fr; gap: 40px; }
      .lb-testi-grid { grid-template-columns: 1fr; }
      .lb-steps { grid-template-columns: 1fr; gap: 28px; }
      .lb-steps::before { display: none; }
      .lb-cta-final-btns { flex-direction: column; align-items: center; }
      .lb-footer-grid { grid-template-columns: 1fr; gap: 28px; }
      .lb-footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
      .lb-delivery-box { flex-direction: column; gap: 14px; }
    }
    @media (max-width: 480px) {
      .lb-hero-ctas { flex-direction: column; }
      .lb-hero-badges { flex-direction: column; }
      .lb-cats-grid { grid-template-columns: 1fr; }
      .lb-quickbens-grid { flex-direction: column; }
      .lb-inst-stats { grid-template-columns: 1fr 1fr; }
    }


    /* ── FICHA DE PRODUCTO ── */

        /* ── TICKER ── */
    .lb-ticker { background:var(--red); overflow:hidden; }
    .lb-ticker-track { display:flex; animation:lb-tick 32s linear infinite; width:max-content; }
    .lb-ticker-track:hover { animation-play-state:paused; }
    .lb-ticker-item { display:flex; align-items:center; gap:8px; padding:10px 32px; font-size:11px; font-weight:700; color:#fff; letter-spacing:.06em; white-space:nowrap; text-transform:uppercase; }
    .lb-ticker-dot { width:4px; height:4px; background:rgba(255,255,255,.4); border-radius:50%; flex-shrink:0; }
    @keyframes lb-tick { 0%{ transform:translateX(0) } 100%{ transform:translateX(-50%) } }

    /* ── BREADCRUMB ── */
    .lb-breadcrumb { padding:16px 0; border-bottom:1px solid var(--border); background:var(--light); }
    .lb-breadcrumb ol { display:flex; align-items:center; gap:6px; flex-wrap:wrap; }
    .lb-breadcrumb li { display:flex; align-items:center; gap:6px; }
    .lb-breadcrumb a { font-size:12px; color:var(--soft); transition:color .2s; font-weight:500; }
    .lb-breadcrumb a:hover { color:var(--red); }
    .lb-breadcrumb li:not(:last-child)::after { content:'/'; color:var(--border); font-size:11px; }
    .lb-breadcrumb li:last-child span { font-size:12px; color:var(--dark); font-weight:600; }

    /* ================================================================
       ZONA PRINCIPAL DEL PRODUCTO
       ================================================================ */
    .lb-pdp-main { padding:48px 0; }
    .lb-pdp-grid {
      display:grid; grid-template-columns:1fr 1fr;
      gap:60px; align-items:start;
    }

    /* ── GALERÍA ── */
    .lb-gallery { position:sticky; top:90px; }
    .lb-gallery-main {
      border-radius:var(--r-lg); overflow:hidden;
      background:var(--red-lt);
      aspect-ratio:1; position:relative;
      cursor:zoom-in;
    }
    .lb-gallery-main img { width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
    .lb-gallery-main:hover img { transform:scale(1.04); }
    .lb-gallery-badge {
      position:absolute; top:16px; left:16px; z-index:2;
      background:var(--red); color:#fff;
      font-size:13px; font-weight:800; padding:6px 14px; border-radius:6px;
      letter-spacing:.02em;
    }
    .lb-gallery-stock-tag {
      position:absolute; top:16px; right:16px; z-index:2;
      background:rgba(0,0,0,.65); color:#fff; backdrop-filter:blur(4px);
      font-size:11px; font-weight:600; padding:5px 12px; border-radius:100px;
      display:flex; align-items:center; gap:5px;
    }
    .lb-gallery-stock-dot { width:6px; height:6px; background:#F39C12; border-radius:50%; animation:pulse-amber 1.5s infinite; }
    @keyframes pulse-amber { 0%,100%{opacity:1} 50%{opacity:.4} }

    .lb-gallery-thumbs { display:flex; gap:10px; margin-top:14px; }
    .lb-thumb {
      width:72px; height:72px; border-radius:10px; overflow:hidden;
      border:2px solid transparent; cursor:pointer; transition:var(--trans); flex-shrink:0;
      background:var(--red-lt);
    }
    .lb-thumb img { width:100%; height:100%; object-fit:cover; }
    .lb-thumb.active { border-color:var(--red); }
    .lb-thumb:hover { border-color:var(--red); }

    .lb-gallery-share {
      margin-top:16px; display:flex; align-items:center; gap:10px;
    }
    .lb-gallery-share span { font-size:12px; color:var(--soft); font-weight:500; }
    .lb-share-btn {
      width:32px; height:32px; border-radius:7px; border:1px solid var(--border);
      display:flex; align-items:center; justify-content:center; color:var(--mid); cursor:pointer; transition:var(--trans);
    }
    .lb-share-btn:hover { border-color:var(--red); color:var(--red); }

    /* ── PANEL DE COMPRA ── */
    .lb-purchase { display:flex; flex-direction:column; gap:0; }

    .lb-product-badges-row { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:16px; }
    .lb-pbadge {
      font-size:11px; font-weight:700; padding:4px 10px; border-radius:4px; letter-spacing:.04em; text-transform:uppercase;
    }
    .lb-pbadge-red { background:var(--red); color:#fff; }
    .lb-pbadge-green { background:var(--green); color:#fff; }
    .lb-pbadge-gray { background:var(--light); color:var(--mid); border:1px solid var(--border); }

    .lb-product-title { font-size:clamp(24px,2.5vw,32px); font-weight:800; line-height:1.15; margin-bottom:6px; color:var(--dark); }
    .lb-product-subtitle { font-size:15px; color:var(--mid); margin-bottom:24px; font-weight:400; line-height:1.6; }

    /* PRECIO */
    .lb-pricing-block { padding:22px; background:var(--light); border-radius:var(--r-lg); border:1px solid var(--border); margin-bottom:20px; }
    .lb-price-main-row { display:flex; align-items:baseline; gap:10px; flex-wrap:wrap; margin-bottom:4px; }
    .lb-price-main { font-size:36px; font-weight:800; color:var(--dark); line-height:1; }
    .lb-price-original { font-size:18px; color:var(--soft); text-decoration:line-through; }
    .lb-price-off-badge { background:var(--red); color:#fff; font-size:13px; font-weight:800; padding:3px 9px; border-radius:5px; }
    .lb-price-best {
      font-size:14px; font-weight:600; color:var(--green);
      display:flex; align-items:center; gap:6px; margin-bottom:10px;
    }
    .lb-price-installment { font-size:13px; color:var(--mid); }
    .lb-price-installment strong { color:var(--dark); }
    .lb-pricing-options { display:flex; flex-direction:column; gap:8px; margin-top:14px; padding-top:14px; border-top:1px solid var(--border); }
    .lb-pricing-option {
      display:flex; align-items:center; justify-content:space-between;
      padding:10px 14px; border-radius:8px; border:1px solid var(--border);
      background:var(--white); transition:var(--trans); cursor:default;
    }
    .lb-pricing-option:hover { border-color:var(--red-mid); }
    .lb-pricing-option-left { display:flex; align-items:center; gap:10px; }
    .lb-pricing-option-icon { width:28px; height:28px; border-radius:6px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
    .lb-pricing-option-label { font-size:12px; font-weight:600; color:var(--dark); }
    .lb-pricing-option-detail { font-size:11px; color:var(--soft); }
    .lb-pricing-option-value { font-size:14px; font-weight:800; color:var(--dark); text-align:right; }
    .lb-pricing-option-value small { display:block; font-size:11px; font-weight:400; color:var(--soft); }
    .lb-pricing-option.highlight { border-color:var(--green); background:#f0fff6; }
    .lb-pricing-option.highlight .lb-pricing-option-value { color:var(--green); }

    /* COLOR SELECTOR */
    .lb-variant-section { margin-bottom:20px; }
    .lb-variant-label { font-size:13px; font-weight:600; color:var(--dark); margin-bottom:10px; }
    .lb-color-opts { display:flex; gap:10px; }
    .lb-color-opt {
      width:36px; height:36px; border-radius:50%; cursor:pointer;
      border:3px solid transparent; transition:var(--trans);
      position:relative;
    }
    .lb-color-opt.active { border-color:var(--red); }
    .lb-color-opt:hover { border-color:var(--red); }
    .lb-color-opt::after { content:attr(data-label); position:absolute; bottom:-22px; left:50%; transform:translateX(-50%); font-size:10px; color:var(--soft); white-space:nowrap; font-weight:500; }

    /* SIZE SELECTOR */
    .lb-size-opts { display:flex; gap:8px; flex-wrap:wrap; }
    .lb-size-opt {
      padding:8px 14px; border-radius:6px; border:1.5px solid var(--border);
      font-size:12px; font-weight:600; cursor:pointer; transition:var(--trans); background:var(--white);
    }
    .lb-size-opt:hover { border-color:var(--red); color:var(--red); }
    .lb-size-opt.active { border-color:var(--red); background:var(--red-lt); color:var(--red); }

    /* CTAs */
    .lb-cta-block { display:flex; flex-direction:column; gap:10px; margin-bottom:20px; }
    .lb-btn-add-cart {
      width:100%; font-size:16px; font-weight:800; padding:17px;
      border-radius:8px; background:var(--red); color:#fff; border:none; cursor:pointer;
      transition:var(--trans); display:flex; align-items:center; justify-content:center; gap:10px;
      letter-spacing:.02em;
    }
    .lb-btn-add-cart:hover { background:var(--red-dk); transform:translateY(-1px); box-shadow:0 8px 24px rgba(231,76,60,.4); }
    .lb-btn-consult {
      width:100%; font-size:14px; font-weight:700; padding:14px;
      border-radius:8px; background:transparent; color:var(--dark);
      border:2px solid var(--border); cursor:pointer; transition:var(--trans);
      display:flex; align-items:center; justify-content:center; gap:10px;
    }
    .lb-btn-consult:hover { border-color:#25D366; color:#25D366; background:#f0fff6; }

    /* TRUST PILLS */
    .lb-trust-pills { display:flex; flex-wrap:wrap; gap:8px; padding:18px; background:var(--light); border-radius:var(--r-lg); border:1px solid var(--border); margin-bottom:20px; }
    .lb-trust-pill { display:flex; align-items:center; gap:7px; font-size:12px; color:var(--mid); font-weight:500; }
    .lb-trust-pill svg { color:var(--red); flex-shrink:0; }

    /* ENVÍO */
    .lb-shipping-box { border:1px solid var(--border); border-radius:var(--r-lg); padding:16px 18px; margin-bottom:20px; }
    .lb-shipping-row { display:flex; align-items:flex-start; gap:12px; padding:10px 0; border-bottom:1px solid var(--border); }
    .lb-shipping-row:last-child { border-bottom:none; padding-bottom:0; }
    .lb-shipping-row svg { color:var(--red); flex-shrink:0; margin-top:2px; }
    .lb-shipping-row strong { font-size:13px; color:var(--dark); display:block; }
    .lb-shipping-row span { font-size:12px; color:var(--soft); line-height:1.5; }

    /* ================================================================
       DESCRIPCIÓN / SPECS
       ================================================================ */
    .lb-pdp-lower { padding:60px 0; background:var(--white); }
    .lb-pdp-lower-grid { display:grid; grid-template-columns:2fr 1fr; gap:60px; align-items:start; }

    /* TABS */
    .lb-tabs { border-bottom:2px solid var(--border); display:flex; gap:0; margin-bottom:36px; }
    .lb-tab {
      padding:14px 24px; font-size:14px; font-weight:600; cursor:pointer;
      color:var(--soft); border-bottom:2px solid transparent; margin-bottom:-2px;
      transition:var(--trans); background:none; border-left:none; border-right:none; border-top:none;
    }
    .lb-tab.active { color:var(--red); border-bottom-color:var(--red); }
    .lb-tab:hover { color:var(--dark); }
    .lb-tab-panel { display:none; }
    .lb-tab-panel.active { display:block; }

    /* DESCRIPCIÓN */
    .lb-desc-intro { font-size:16px; color:var(--mid); line-height:1.8; margin-bottom:28px; font-weight:400; }
    .lb-desc-highlights { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:28px; }
    .lb-desc-highlight {
      display:flex; align-items:flex-start; gap:12px;
      background:var(--light); border:1px solid var(--border); border-radius:var(--r); padding:16px;
    }
    .lb-desc-highlight svg { color:var(--red); flex-shrink:0; margin-top:2px; }
    .lb-desc-highlight h4 { font-size:13px; font-weight:700; margin-bottom:3px; }
    .lb-desc-highlight p { font-size:12px; color:var(--mid); line-height:1.5; }

    /* TABLA SPECS */
    .lb-specs-title { font-size:18px; font-weight:700; margin-bottom:18px; }
    .lb-specs-table { width:100%; border-collapse:separate; border-spacing:0; border-radius:var(--r-lg); overflow:hidden; border:1px solid var(--border); }
    .lb-specs-table tr:nth-child(even) { background:var(--light); }
    .lb-specs-table tr:hover { background:var(--red-lt); }
    .lb-specs-table td {
      padding:13px 18px; font-size:13px; border-bottom:1px solid var(--border);
    }
    .lb-specs-table tr:last-child td { border-bottom:none; }
    .lb-specs-table td:first-child { font-weight:700; color:var(--dark); width:45%; }
    .lb-specs-table td:last-child { color:var(--mid); }

    /* FICHA TÉCNICA */
    .lb-tech-img { width:100%; border-radius:var(--r-lg); border:1px solid var(--border); margin-top:20px; }

    /* GARANTÍA */
    .lb-warranty-grid { display:flex; flex-direction:column; gap:12px; }
    .lb-warranty-item {
      display:flex; align-items:flex-start; gap:14px;
      padding:18px; background:var(--light); border:1px solid var(--border); border-radius:var(--r-lg);
    }
    .lb-warranty-item-icon { color:var(--red); flex-shrink:0; }
    .lb-warranty-item h4 { font-size:14px; font-weight:700; margin-bottom:4px; }
    .lb-warranty-item p { font-size:13px; color:var(--mid); line-height:1.6; }

    /* SIDEBAR DERECHA */
    .lb-pdp-sidebar { position:sticky; top:90px; display:flex; flex-direction:column; gap:20px; }
    .lb-sidebar-card { background:var(--light); border:1px solid var(--border); border-radius:var(--r-lg); padding:22px; }
    .lb-sidebar-card h3 { font-size:15px; font-weight:700; margin-bottom:16px; color:var(--dark); }
    .lb-sidebar-cta-list { display:flex; flex-direction:column; gap:10px; }
    .lb-sidebar-cta-item {
      display:flex; align-items:center; gap:12px;
      padding:13px 16px; border-radius:10px; cursor:pointer; transition:var(--trans);
      border:1.5px solid var(--border); background:var(--white); font-size:13px; font-weight:600;
    }
    .lb-sidebar-cta-item:hover { border-color:var(--red); color:var(--red); background:var(--red-lt); }
    .lb-sidebar-cta-item svg { color:var(--red); flex-shrink:0; }

    .lb-sucursales-list { display:flex; flex-direction:column; gap:10px; }
    .lb-sucursal-item { padding:12px 0; border-bottom:1px solid var(--border); }
    .lb-sucursal-item:last-child { border-bottom:none; padding-bottom:0; }
    .lb-sucursal-item strong { font-size:13px; font-weight:700; display:block; margin-bottom:2px; }
    .lb-sucursal-item span { font-size:12px; color:var(--soft); line-height:1.5; display:block; }

    /* ================================================================
       RESEÑAS
       ================================================================ */
    .lb-reviews { padding:60px 0; background:var(--light); border-top:1px solid var(--border); }
    .lb-reviews-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:36px; flex-wrap:wrap; gap:16px; }
    .lb-reviews-score { display:flex; align-items:center; gap:16px; }
    .lb-reviews-num { font-size:56px; font-weight:800; color:var(--dark); line-height:1; }
    .lb-reviews-stars-big { font-size:24px; color:#F39C12; letter-spacing:2px; }
    .lb-reviews-count { font-size:13px; color:var(--soft); margin-top:4px; }
    .lb-reviews-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
    .lb-review-card { background:var(--white); border:1px solid var(--border); border-radius:var(--r-lg); padding:24px; transition:var(--trans); }
    .lb-review-card:hover { box-shadow:var(--shadow-sm); transform:translateY(-2px); }
    .lb-review-stars { font-size:14px; color:#F39C12; letter-spacing:1px; margin-bottom:12px; }
    .lb-review-text { font-size:13px; color:var(--mid); line-height:1.75; font-style:italic; margin-bottom:16px; }
    .lb-review-text::before { content:'"'; }
    .lb-review-text::after  { content:'"'; }
    .lb-review-author { display:flex; align-items:center; gap:10px; }
    .lb-review-avatar { width:36px; height:36px; border-radius:50%; background:var(--red); color:#fff; display:flex; align-items:center; justify-content:center; font-size:14px; font-weight:800; flex-shrink:0; }
    .lb-review-name { font-size:13px; font-weight:700; }
    .lb-review-location { font-size:11px; color:var(--soft); }
    .lb-review-verified { display:flex; align-items:center; gap:4px; font-size:11px; color:var(--green); font-weight:600; margin-top:4px; }

    /* ================================================================
       PRODUCTOS RELACIONADOS
       ================================================================ */
    .lb-related { padding:60px 0; background:var(--white); }
    .lb-related-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:36px; }
    .lb-rel-card { border:1px solid var(--border); border-radius:var(--r-lg); overflow:hidden; transition:var(--trans); }
    .lb-rel-card:hover { box-shadow:var(--shadow-md); transform:translateY(-3px); border-color:transparent; }
    .lb-rel-img { height:180px; background:var(--red-lt); display:flex; align-items:center; justify-content:center; overflow:hidden; position:relative; }
    .lb-rel-img img { width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
    .lb-rel-card:hover .lb-rel-img img { transform:scale(1.05); }
    .lb-rel-img-placeholder { display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; color:var(--red); font-size:11px; font-weight:500; }
    .lb-rel-body { padding:16px; }
    .lb-rel-tag { font-size:10px; font-weight:700; color:var(--red); text-transform:uppercase; letter-spacing:.07em; margin-bottom:4px; }
    .lb-rel-name { font-size:14px; font-weight:700; margin-bottom:6px; line-height:1.3; }
    .lb-rel-price { font-size:18px; font-weight:800; color:var(--dark); margin-bottom:4px; }
    .lb-rel-transfer { font-size:11px; color:var(--green); font-weight:600; margin-bottom:10px; }
    .lb-rel-btn { display:block; text-align:center; padding:10px; border-radius:6px; background:var(--red); color:#fff; font-size:12px; font-weight:700; transition:var(--trans); }
    .lb-rel-btn:hover { background:var(--red-dk); }

    /* ================================================================
       CTA FINAL COMPACTO
       ================================================================ */
    .lb-product-cta-strip {
      background:var(--dark); padding:40px 0;
      position:relative; overflow:hidden;
    }
    .lb-product-cta-strip::before {
      content:''; position:absolute; inset:0;
      background:radial-gradient(ellipse at 60% 50%, rgba(231,76,60,.2) 0%, transparent 65%);
    }
    .lb-product-cta-strip .container { position:relative; z-index:2; display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; }
    .lb-cta-strip-text h2 { font-size:22px; font-weight:800; color:#fff; margin-bottom:4px; }
    .lb-cta-strip-text p { font-size:14px; color:rgba(255,255,255,.5); }
    .lb-cta-strip-btns { display:flex; gap:10px; flex-wrap:wrap; }

       /* ── RESPONSIVE ── */
    @media (max-width:1024px) {
      .lb-pdp-lower-grid { grid-template-columns:1fr; }
      .lb-pdp-sidebar { position:static; }
      .lb-related-grid { grid-template-columns:repeat(2,1fr); }
      .lb-footer-grid { grid-template-columns:1fr 1fr; }
    }
    @media (max-width:768px) {
      .lb-topbar { display:none; }
      .lb-nav-links { display:none; }
      .lb-pdp-grid { grid-template-columns:1fr; gap:32px; }
      .lb-gallery { position:static; }
      .lb-reviews-grid { grid-template-columns:1fr; }
      .lb-related-grid { grid-template-columns:1fr 1fr; }
      .lb-desc-highlights { grid-template-columns:1fr; }
      .lb-product-cta-strip .container { flex-direction:column; text-align:center; }
      .lb-cta-strip-btns { justify-content:center; }
      .lb-footer-grid { grid-template-columns:1fr; gap:28px; }
      .lb-footer-bottom { flex-direction:column; text-align:center; }
    }
    @media (max-width:480px) {
      .lb-related-grid { grid-template-columns:1fr; }
      .lb-reviews-grid { grid-template-columns:1fr; }
      .lb-pricing-options { gap:6px; }
    }


    /* ============================================================
   PÁGINA SOBRE NOSOTROS
   ============================================================ */

.lb-about-page {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: var(--white);
}

.lb-about-page .container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* HERO */
.lb-about-hero {
  background: var(--dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.lb-about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(231,76,60,.22) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(231,76,60,.08) 0%, transparent 45%);
}

.lb-about-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.lb-about-hero-title {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -.02em;
}

.lb-about-hero-title em {
  font-style: normal;
  color: var(--red);
}

.lb-about-hero-text {
  font-size: 17px;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
  margin-bottom: 32px;
}

.lb-about-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lb-about-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lb-stat-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: center;
  backdrop-filter: blur(4px);
  transition: var(--trans);
}

.lb-stat-card:hover {
  background: rgba(231,76,60,.15);
  border-color: rgba(231,76,60,.35);
}

.lb-stat-num {
  font-size: 44px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.lb-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-top: 8px;
  line-height: 1.4;
}

/* HISTORIA */
.lb-historia {
  padding: 88px 0;
  background: var(--white);
}

.lb-historia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.lb-historia h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.lb-historia h2 span {
  color: var(--red);
}

.lb-historia-lead,
.lb-historia-body {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

.lb-timeline {
  display: flex;
  flex-direction: column;
  margin-top: 28px;
}

.lb-timeline-item {
  display: flex;
  gap: 20px;
  padding-bottom: 28px;
}

.lb-timeline-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.lb-timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 3px;
  box-shadow: 0 0 0 4px var(--red-lt);
}

.lb-timeline-line {
  width: 2px;
  flex: 1;
  background: var(--border);
  margin-top: 8px;
}

.lb-timeline-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.lb-timeline-desc {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
}

.lb-historia-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lb-value-item {
  padding: 22px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: var(--trans);
}

.lb-value-item:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
}

.lb-value-text h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.lb-value-text p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
}

/* TRUST */
.lb-trust {
  padding: 80px 0;
  background: var(--light);
}

.lb-trust-section-head {
  text-align: center;
  margin-bottom: 52px;
}

.lb-trust-section-head h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.2;
}

.lb-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.lb-trust-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  transition: var(--trans);
}

.lb-trust-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.lb-trust-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.lb-trust-card p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
}

/* TECNOLOGÍAS */
.lb-tecnologias {
  padding: 80px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.lb-tecnologias::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 90% 30%, rgba(231,76,60,.14) 0%, transparent 55%);
}

.lb-tecnologias .container {
  position: relative;
  z-index: 2;
}

.lb-tec-head {
  text-align: center;
  margin-bottom: 52px;
}

.lb-tec-head h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
}

.lb-tec-head p {
  font-size: 16px;
  color: rgba(255,255,255,.5);
  max-width: 540px;
  margin-inline: auto;
  line-height: 1.7;
}

.lb-tec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.lb-tec-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: var(--trans);
}

.lb-tec-card:hover {
  background: rgba(231,76,60,.1);
  border-color: rgba(231,76,60,.3);
}

.lb-tec-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.lb-tec-desc {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
}

/* SUCURSALES */
.lb-sucursales {
  padding: 88px 0;
  background: var(--light);
}

.lb-sucursales-head {
  text-align: center;
  margin-bottom: 56px;
}

.lb-sucursales-head h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}

.lb-sucursales-head p {
  font-size: 16px;
  color: var(--mid);
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.7;
}

.lb-sucursales-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

.lb-map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.lb-map-wrap iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: none;
}

.lb-suc-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lb-suc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  transition: var(--trans);
}

.lb-suc-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
}

.lb-suc-body h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.lb-suc-body address {
  font-style: normal;
  font-size: 13px;
  color: var(--mid);
  line-height: 1.5;
}

/* CONTACTO + FAQ */
.lb-contacto {
  padding: 80px 0;
  background: var(--white);
}

.lb-contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.lb-contacto-left h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}

.lb-contacto-left p {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 32px;
}

.lb-contacto-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lb-contact-method {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: var(--trans);
}

.lb-contact-method:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
}

.lb-contact-method strong {
  font-size: 14px;
  color: var(--dark);
}

.lb-contact-method span {
  font-size: 13px;
  color: var(--mid);
}

.lb-faq {
  background: var(--light);
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1px solid var(--border);
}

.lb-faq h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 20px;
}

.lb-faq-item {
  border-bottom: 1px solid var(--border);
}

.lb-faq-item:last-child {
  border-bottom: none;
}

.lb-faq-q {
  width: 100%;
  text-align: left;
  padding: 16px 0;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--dark);
}

.lb-faq-q:hover {
  color: var(--red);
}

.lb-faq-a {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
  padding-bottom: 16px;
}

/* CTA FINAL */
.lb-cta-final {
  padding: 90px 0;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lb-cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(231,76,60,.22) 0%, transparent 65%);
}

.lb-cta-final .container {
  position: relative;
  z-index: 2;
}

.lb-cta-final h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}

.lb-cta-final-sub {
  font-size: 17px;
  color: rgba(255,255,255,.5);
  margin-bottom: 44px;
}

.lb-cta-final-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .lb-about-hero-grid,
  .lb-historia-grid,
  .lb-sucursales-grid,
  .lb-contacto-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lb-trust-grid,
  .lb-tec-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lb-map-wrap iframe {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .lb-about-hero {
    padding: 56px 0;
  }

  .lb-about-hero-stats,
  .lb-trust-grid,
  .lb-tec-grid {
    grid-template-columns: 1fr;
  }

  .lb-historia,
  .lb-trust,
  .lb-tecnologias,
  .lb-sucursales,
  .lb-contacto {
    padding: 56px 0;
  }

  .lb-cta-final {
    padding: 64px 0;
  }

  .lb-cta-final-btns,
  .lb-about-hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .lb-map-wrap iframe {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .lb-about-page .container {
    padding-inline: 18px;
  }

  .lb-stat-card {
    padding: 22px 18px;
  }

  .lb-stat-num {
    font-size: 36px;
  }
}
