/* ── TIENDA – INTRO ──────────────────────────────────────── */
.tienda-intro { background: var(--off-white); padding: 28px 5vw; position: relative; overflow: hidden; }
.tienda-intro::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(242,226,5,.06) 1.5px, transparent 1.5px); background-size: 20px 20px; }
.tienda-intro-inner { max-width: 1200px; margin: 0 auto; position: relative; display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.tienda-info-strip { display: flex; gap: 4px; flex-wrap: wrap; padding: 16px 0 20px; border-top: 1px solid var(--border); margin-top: 16px; justify-content: space-between; }
.tienda-info-item { font-size: 1rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }

/* ── TIENDA – FILTROS ────────────────────────────────────── */
.shop-filters { max-width: 1200px; margin: 0 auto; display: flex; gap: 2px; flex-wrap: wrap; padding: 32px 0 0; }
.filter-btn { background: var(--s1); border: 1px solid var(--border); color: #666; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 9px 18px; cursor: pointer; transition: all 0.2s; font-family: inherit; }
.filter-btn.active, .filter-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); font-weight: 700; }
.shop-inner { max-width: 1200px; margin: 0 auto; }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.sort-select { background: var(--s1); border: 1px solid var(--border); color: var(--muted); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 9px 14px; cursor: pointer; font-family: inherit; outline: none; transition: border-color .2s; }
.sort-select:focus, .sort-select:hover { border-color: var(--gold); color: var(--text); }
.shop-count { font-family: 'Montserrat', sans-serif; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.pagination { display: flex; align-items: center; justify-content: center; gap: 4px; margin-top: 40px; }
.pag-btn { background: var(--s1); border: 1px solid var(--border); color: var(--muted); font-size: 0.7rem; font-family: 'Montserrat', sans-serif; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 9px 14px; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.pag-btn:hover:not(:disabled) { background: var(--gold); border-color: var(--gold); color: var(--black); }
.pag-btn:disabled { opacity: 0.3; cursor: not-allowed; color: var(--muted); }
.pag-btn-ico {background: var(--s1); font-size: 1.2rem; color: var(--muted); display: inline-flex; align-items: center; justify-content: center; padding: 0; width: 32px; height: 32px; line-height: 1; border:1px solid var(--border)}
.pag-btn-ico:hover:not(:disabled) { background: var(--gold); border-color: var(--gold); color: var(--black); }
.pag-btn-ico:disabled {opacity: 0.3; cursor: not-allowed; color: var(--muted); }
.pag-select { background: var(--s1); border: 1px solid var(--gold); color: var(--muted); font-size: 0.72rem; font-family: 'Montserrat', sans-serif; font-weight: 700; padding: 9px 10px; cursor: pointer; outline: none; text-align: center; min-width: 60px; }

/* ── TIENDA – PRODUCTS GRID ──────────────────────────────── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 2px; margin-top: 24px; }
.product-card { background: var(--s1); cursor: pointer; transition: background 0.2s; position: relative; display: flex; flex-direction: column; }
.product-card:hover { background: var(--s2); }
.product-card:hover .p-img-overlay { opacity: 1; overflow: hidden;}
.p-badge { position: absolute; top: 10px; left: 10px; z-index: 2; padding: 3px 9px; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.badge-promo   { background: var(--red);  color: var(--white); }
.badge-usado   { background: var(--blue); color: var(--white); }
.badge-soldout { background: #555; color: var(--white); }
.product-card--soldout { opacity: 0.55; cursor: default; }
.product-card--soldout:hover { transform: none; box-shadow: none; border-top-color: transparent; background: var(--s1); }
.product-card--soldout .p-img-overlay { display: none; }
.p-add--soldout { background: var(--s2) !important; color: var(--muted) !important; border-color: var(--border) !important; cursor: not-allowed !important; }
.p-add--soldout:hover { background: var(--s2) !important; color: var(--muted) !important; font-weight: 400 !important; }
.p-img { aspect-ratio: 1; background: var(--black); display: flex; align-items: center; justify-content: center; position: relative;  }
.p-img-overlay { position: absolute; inset: 0; background: #22c55ee6; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--black); opacity: 0; transition: opacity 0.2s; }
.p-emoji { font-size: 3.2rem; opacity: 0.4; }
.p-body { padding: 16px 18px 20px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.p-cat   { font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.p-name  { font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 600; color: var(--black); margin-bottom: 10px; line-height: 1.3; }
.p-price { font-family: 'Open Sans', sans-serif; font-size: 1.35rem; color: var(--black); font-weight: 600; }
.p-add { width: 100%; padding: 9px; margin-top: 10px; background: transparent; border: 1px solid #222; color: var(--muted); font-size: .85rem; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: all 0.5s; font-family: inherit; }
.p-add:hover { background: var(--green); border-color: var(--green); color: var(--white); font-weight: 700; }

/* ── TIENDA – PRODUCT MODAL ──────────────────────────────── */
.modal-bg { position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.88); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.modal-bg.open { opacity: 1; pointer-events: all; }
.modal-box { background: var(--black); max-width: 580px; width: 100%; max-height: 90vh; overflow-y: auto; border-top: 3px solid var(--green); transform: translateY(16px); transition: transform 0.3s; box-shadow: 0 24px 64px rgba(0,0,0,0.88); }
.modal-bg.open .modal-box { transform: translateY(0); }
.modal-head { padding: 16px 20px 0; display: flex; justify-content: space-between; align-items: center; }
.modal-close { background: none; border: none; color: var(--white); font-size: 1.3rem; cursor: pointer; transition: color 0.2s; }
.modal-content { padding: 12px 24px 28px; }
.modal-cat   { font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green); margin-bottom: 6px; }
.modal-name  { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 0.03em; line-height: 1; margin-bottom: 8px; color: var(--white); }
.modal-price { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; color: var(--green); margin-bottom: 18px; }
.modal-desc  { font-family: 'Open Sans', sans-serif; font-size: 1.03rem; color: var(--white); line-height: 1.75; margin-bottom: 22px; white-space: pre-line; }
.modal-var-label { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white); margin-bottom: 9px; }
.modal-var-opts  { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 16px; }
/* ── Variant tiles — cuadrados estilo Shopify/Swiss ── */
.var-btn {
  min-width: 44px; height: 44px; padding: 0 14px;
  border: 1px solid var(--s3);
  background: transparent; color: rgba(255,255,255,0.7);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; font-family: 'Montserrat', sans-serif;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  display: inline-flex; align-items: center; justify-content: center;
}
.var-btn:hover:not(:disabled):not(.sel) {
  border-color: var(--gold); color: var(--gold);
}
.var-btn.sel {
  border: 2px solid var(--gold); color: var(--gold);
  background: rgba(242,196,56,0.08); font-weight: 700;
}
.var-btn--out {
  opacity: 0.25; text-decoration: line-through; cursor: not-allowed; border-style: dashed;
}
.var-btn--out:hover {
  border-color: var(--s3) !important; color: rgba(255,255,255,0.7) !important;
  background: transparent !important;
}
.modal-add-btn {
  width: 100%; padding: 15px;
  background: var(--black); color: var(--white); border: 2px solid var(--white);
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  cursor: pointer; transition: background 0.25s, color 0.25s, border-color 0.25s;
  display: flex; align-items: center; justify-content: center; gap: 9px; font-family: 'Montserrat', sans-serif;
}
.modal-add-btn:hover:not(:disabled):not(.modal-add-btn--pending) { background: var(--green); border-color: var(--green); color: var(--black); }
.modal-add-btn:disabled {
  background: var(--s3); color: #94a3b8; border-color: var(--s3);
  cursor: not-allowed; opacity: 1;
}
/* Esperando selección de variantes */
.modal-add-btn--pending {
  background: transparent; border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.4);
  cursor: default;
}
.modal-share-btn { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.25); border-radius: 6px; padding: 6px 12px; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: border-color 0.2s, background 0.2s; display: flex; align-items: center; gap: 6px; font-family: inherit; white-space: nowrap; }
.modal-share-btn:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.modal-share-btn svg { width: 14px !important; height: 14px !important; flex-shrink: 0; }

/* ── TIENDA – CART DRAWER ────────────────────────────────── */
.cart-bg { position: fixed; inset: 0; z-index: 3000; background: rgba(0,0,0,0.65); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.cart-bg.open { opacity: 1; pointer-events: all; }
.cart-panel { position: fixed; top: 0; right: 0; bottom: 0; z-index: 3001; width: min(400px, 100vw); background: var(--black); border-left: 1px solid var(--border); display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.35s cubic-bezier(.4,0,.2,1); box-shadow: -16px 0 48px rgba(0,0,0,0.55); }
.cart-bg.open .cart-panel { transform: translateX(0); }
.cart-top { padding: 20px 20px 16px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.cart-heading { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 0.05em; color: var(--white); }
.cart-x { background: none; border: none; color: var(--white); font-size: 1.3rem; cursor: pointer; transition: color 0.2s; }
.cart-x:hover { color: var(--red); }
.cart-body { flex: 1; overflow-y: auto; padding: 12px 20px; }
.cart-empty { text-align: center; padding: 56px 0; color: var(--white); }
.cart-empty-ico { font-size: 4rem; margin-bottom: 12px; opacity: 0.5; }
.cart-row { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--muted); }
.cart-row-ico { font-size: 1.8rem; min-width: 40px; text-align: center; padding-top: 2px; flex-shrink: 0; }
.cart-row-info { flex: 1; }
.cart-row-name  { font-size: 0.88rem; font-weight: 500; color: var(--white); margin-bottom: 2px; line-height: 1.3; }
.cart-row-var   { font-size: 0.74rem; color: var(--white); margin-bottom: 6px; }
.cart-row-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.05rem; color: var(--gold); }
.cart-row-rm { background: none; border: none; color: var(--gold); cursor: pointer; font-size: 0.95rem; transition: color 0.2s; padding: 4px; align-self: flex-start; flex-shrink: 0; }
.cart-row-rm:hover { color: var(--red); }
.cart-foot { padding: 16px 20px; border-top: 1px solid var(--border); }
.cart-total-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.cart-total-lbl { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); }
.cart-total-amt { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; color: var(--gold); }
.cart-send-btn { width: 100%; padding: 14px; background: var(--muted); color: var(--white); border: 2px solid var(--black); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; display: flex; align-items: center; justify-content: center; gap: 9px; font-family: inherit; }
.cart-send-btn:hover { background: var(--green); color: var(--white); border: 2px solid var(--green); }
.cart-note { font-size: 0.72rem; color: var(--white); text-align: center; margin-top: 10px; line-height: 1.6; }

/* ── BLOG ────────────────────────────────────────────────── */
.blog-layout { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 320px; column-gap: 64px; align-items: start; }
.blog-posts-col  { min-width: 0; }
.blog-sidebar-col { position: sticky; top: calc(var(--nav-h) + 32px); align-self: start; display: flex; flex-direction: column; gap: 4px; }
.post-featured { background: var(--s1); text-decoration: none; color: var(--text); display: block; margin-bottom: 8px; border: 1px solid var(--border); border-radius: var(--radius); transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); overflow: hidden; }
.post-featured:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.08); border-color: rgba(217,54,54,0.3); transform: translateY(-4px); }
.post-featured-img { width: 100%; aspect-ratio: 16/7; background: var(--s2); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 5rem; border-bottom: 1px solid var(--border); }
.post-featured-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: transform 0.6s; }
.post-featured:hover .post-featured-img img { transform: scale(1.05); opacity: 1; }
.post-featured-body { padding: 40px; }
.post-cat { display: inline-block; font-family: 'Montserrat', sans-serif; font-size: .62rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; padding: 4px 10px; margin-bottom: 16px; }
.cat-tecnica      { background: var(--blue); color: #fff; }
.cat-torneo       { background: var(--red);  color: #fff; }
.cat-noticias     { background: var(--gold); color: var(--black); }
.cat-equipamiento { background: var(--s3);   color: var(--text); }
.post-title   { font-family: 'Oswald', sans-serif; font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 700; letter-spacing: 0.03em; margin-bottom: 12px; line-height: 1.05; color: var(--text); text-transform: uppercase; }
.post-excerpt { font-family: 'Open Sans', sans-serif; font-size: 1.05rem; color: var(--muted); line-height: 1.75; margin-bottom: 18px; }
.post-meta    { font-size: 0.75rem; color: var(--muted); display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.posts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.post-card { background: var(--s1); text-decoration: none; color: var(--text); display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: var(--radius); transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); overflow: hidden; }
.post-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); border-color: rgba(217,54,54,0.3); transform: translateY(-4px); }
.post-card-img { aspect-ratio: 16/9; background: var(--s2); display: flex; align-items: center; justify-content: center; font-size: 3.5rem; position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
.post-card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: transform 0.6s; }
.post-card:hover .post-card-img img { transform: scale(1.05); opacity: 1; }
.post-card-body    { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-card-title   { font-family: 'Oswald', sans-serif; font-size: 1.6rem; font-weight: 700; letter-spacing: 0.05em; margin: 12px 0 10px; line-height: 1.1; color: var(--text); text-transform: uppercase; }
.post-card-excerpt { font-size: 0.9rem; color: var(--muted); line-height: 1.65; flex: 1; font-family: 'Open Sans', sans-serif; }
.post-card-meta    { font-family: 'Montserrat', sans-serif; font-weight: 500; font-size: 0.75rem; color: var(--muted); margin-top: 16px; border-top: 1px solid var(--border); padding-top: 12px; display: flex; justify-content: space-between; align-items: center; }
.post-read-more    { font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); display: flex; align-items: center; gap: 6px; transition: transform 0.2s; }
.post-card:hover .post-read-more { transform: translateX(5px); }
.sidebar-widget { margin-bottom: 40px; }
.sidebar-widget { margin-bottom: 16px; }
.sidebar-title { font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.sidebar-cats { list-style: none; }
.sidebar-cats li { border-bottom: 1px solid var(--border); }
.sidebar-cats a { font-family: 'Open Sans', sans-serif; display: flex; justify-content: space-between; padding: 10px 0; font-size: 0.88rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.sidebar-cats a:hover { color: var(--red); }
.sidebar-cats span { font-size: 0.75rem; color: var(--muted); }
.sidebar-recent-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); text-decoration: none; color: var(--text); transition: opacity 0.2s; }
.sidebar-recent-item:hover { opacity: 0.75; }
.sidebar-recent-img { width: 64px; height: 64px; background: var(--s2); border: 1px solid var(--border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; filter: grayscale(1); transition: all 0.3s; }
.sidebar-recent-item:hover .sidebar-recent-img { filter: grayscale(0); border-color: rgba(217,54,54,0.3); }
.sidebar-recent-title { font-family: 'Open Sans', sans-serif; font-size: 0.9rem; font-weight: 600; line-height: 1.4; margin-bottom: 6px; color: var(--text); }
.sidebar-recent-date  { font-size: 0.75rem; color: var(--red); font-family: 'Montserrat', sans-serif; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.post-coming { position: relative; }
.post-coming::after { content: 'Próximamente'; position: absolute; top: 16px; right: 16px; font-family: 'Montserrat', sans-serif; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; background: var(--s2); color: var(--text); padding: 4px 12px; border: 1px solid var(--border); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-layout { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 280px 1fr; gap: 64px; align-items: start; }
.faq-sidebar { position: sticky; top: calc(var(--nav-h) + 32px); }
.faq-nav { list-style: none; }
.faq-nav li { margin-bottom: 2px; }
.faq-nav a { display: block; padding: 9px 14px; font-size: .85rem; color: var(--muted); text-decoration: none; border-left: 2px solid transparent; transition: color .2s, border-color .2s, background .2s; }
.faq-nav a:hover, .faq-nav a.active { color: var(--red); border-left-color: var(--red); background: rgba(217,54,54,.05); }
.faq-sidebar-box { margin-top: 40px; padding: 20px; background: var(--s2); border-left: 3px solid var(--gold); }
.faq-sidebar-box p { font-size: .82rem; color: var(--muted); line-height: 1.7; }
.faq-section { margin-bottom: 56px; }
.faq-section-title { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 700; text-transform: uppercase; color: var(--red); padding-top: 8px; }
.faq-section-divider { height: 1px; background: linear-gradient(90deg, var(--border), transparent); margin-bottom: 8px; }
.faq-item { border-bottom: 1px solid rgba(26,26,26,0.05); }
.faq-question { width: 100%; background: none; border: none; color: var(--text); padding: 16px 0; text-align: left; cursor: pointer; font-family: 'Montserrat', sans-serif; font-size: 1.15rem; font-weight: 500; display: flex; justify-content: space-between; align-items: center; gap: 8px; transition: color 0.3s; }
.faq-question:hover { color: var(--red); }
.faq-icon { color: var(--red); font-size: 1.4rem; transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { font-family: 'Open Sans', sans-serif; font-size: 1.1rem; color: var(--muted); line-height: 1.8; max-height: 0; overflow: hidden; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); opacity: 0; padding-right: 20px; }
.faq-item.open .faq-answer { max-height: 2000px; padding-bottom: 32px; opacity: 1; }
.faq-answer a { color: var(--red); text-decoration: underline; text-underline-offset: 4px; }
.faq-answer strong { color: var(--text); font-weight: 600; font-family: 'Montserrat', sans-serif; }
.faq-table { width: 100%; border-collapse: collapse; margin: 16px 0 8px; }
.faq-table th { background: var(--red); color: #fff; font-family: 'Montserrat', sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 12px 16px; text-align: left; }
.faq-table td { padding: 12px 16px; font-size: .92rem; color: var(--text); border-bottom: 1px solid var(--border); }
.faq-table img { width: 100%; }
.faq-table tr:last-child td { border-bottom: none; }
.faq-table tr:nth-child(even) td { background: var(--bg); }
.faq-pilares { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; margin: 28px 0; }
.faq-pilar { background: var(--s1); border: 1px solid var(--border); border-top: 3px solid var(--gold); padding: 32px 24px; text-align: center; transition: transform .2s, box-shadow .2s; }
.faq-pilar:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.faq-pilar-icon { width: 64px; height: 64px; border-radius: 50%; border: 2px solid var(--red); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 2rem; }
.faq-pilar-title { font-family: 'Oswald', sans-serif; font-size: 1.05rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--black); margin-bottom: 12px; }
.faq-pilar-desc { font-size: 1rem; color: var(--muted); line-height: 1.7; text-align: left; }
.faq-progress-title { font-family: 'Oswald', sans-serif; font-size: 1.3rem; font-weight: 700; text-transform: uppercase; color: var(--text); margin: 20px 0 14px; }
.faq-progress-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.faq-progress-item { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--border); }
.faq-progress-item:last-child { border-bottom: none; }
.faq-progress-dot { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: var(--s1); }
.faq-progress-dot svg { width: 16px; height: 16px; fill: none; stroke: var(--red); stroke-width: 2; }
.faq-progress-name { font-family: 'Montserrat', sans-serif; font-size: .82rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.faq-progress-desc { font-size: .88rem; color: var(--muted); line-height: 1.6; }
.faq-nivel-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin-top: 20px; }
.faq-nivel-card { background: var(--s1); border: 1px solid var(--border); border-top: 3px solid var(--red); padding: 28px 24px; transition: transform .2s, box-shadow .2s; }
.faq-nivel-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.07); }
.faq-nivel-card-title { font-family: 'Oswald', sans-serif; font-size: 1.3rem; font-weight: 700; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.faq-nivel-card-desc { font-size: .88rem; color: var(--muted); line-height: 1.75; }
.still-questions { background: linear-gradient(135deg, var(--gold), var(--amber)); padding: 80px 5vw; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; position: relative; overflow: hidden; }
.still-questions::after { content: ''; position: absolute; inset: 0; background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" stroke="rgba(26,26,26,0.25)" stroke-width="2" fill="none"/></svg>') repeat; opacity: 0.3; pointer-events: none; }
.stq-text { position: relative; z-index: 2; }
.stq-text h2 { font-size: clamp(2rem,4vw,3rem); color: var(--black); margin-bottom: 8px; font-family: 'Oswald', sans-serif; letter-spacing: 0.03em; }
.stq-text p  { font-family: 'Open Sans', sans-serif; font-size: 1.25rem; color: rgba(26,26,26,0.8); font-weight: 500; }

/* ── CONTACTO ────────────────────────────────────────────── */
.contacto-layout { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-item { padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; gap: 24px; align-items: flex-start; }
.contact-item:last-child { border-bottom: none; }
.contact-icon { font-size: 1.5rem; min-width: 48px; flex-shrink: 0; filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5)); }
.contact-label { font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; font-weight: 700; }
.contact-val { font-size: 1.1rem; color: var(--text); line-height: 1.6; font-family: 'Montserrat', sans-serif; font-weight: 500; }
.contact-val a { color: var(--text); text-decoration: none; transition: color 0.3s; }
.contact-val a:hover { color: var(--red); }
.contact-sub { font-size: 1rem; color: var(--muted); margin-top: 6px; font-family: 'Open Sans', sans-serif; line-height: 1.6; }
.wa-options { display: flex; flex-direction: column; gap: 12px; margin-top: 48px; }
.wa-option { display: flex; align-items: flex-start; gap: 20px; padding: 24px; background: var(--s1); text-decoration: none; color: var(--text); border: 1px solid var(--border); border-radius: var(--radius); border-left: 4px solid var(--border); transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
.wa-option:hover { border-color: rgba(37,211,102,0.5); border-left-color: #25D366; transform: translateX(5px); box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.wa-option-icon { font-size: 1.8rem; flex-shrink: 0; }
.wa-option-title { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 1.05rem; margin-bottom: 6px; color: var(--text); }
.wa-option-desc { font-size: 1rem; color: var(--muted); font-family: 'Open Sans', sans-serif; }
.wa-option-arrow { margin-left: auto; color: var(--muted); font-size: 1.2rem; align-self: center; flex-shrink: 0; transition: all 0.3s; }
.wa-option:hover .wa-option-arrow { transform: translateX(6px); color: #25D366; }
.redes-section { background: var(--s1); padding: 100px 5vw; position: relative; }
.redes-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); }
.redes-inner { max-width: 1200px; margin: 0 auto; }
.redes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-top: 48px; }
.red-card { padding: 32px 28px; background: var(--s1); text-decoration: none; color: var(--text); border: 1px solid var(--border); border-radius: var(--radius); display: flex; flex-direction: column; align-items: flex-start; gap: 16px; transition: all 0.4s; }
.red-card:hover { border-color: rgba(217,54,54,0.3); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.red-card svg { width: 32px; height: 32px; fill: var(--muted); transition: fill 0.4s; }
.red-card:hover svg { fill: var(--red); }
.red-card-name   { font-family: 'Oswald', sans-serif; font-size: 1.6rem; letter-spacing: 0.05em; color: var(--text); line-height: 1; }
.red-card-handle { font-size: 0.85rem; color: var(--muted); font-family: 'Montserrat', sans-serif; letter-spacing: 0.02em; }

/* ── BLOG SKELETONS ──────────────────────────────────────── */
@keyframes blog-shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position:  600px 0; }
}
.blog-skel-img {
  background: linear-gradient(90deg, var(--s2) 25%, rgba(255,255,255,.05) 50%, var(--s2) 75%);
  background-size: 1200px 100%;
  animation: blog-shimmer 1.4s infinite linear;
}
.blog-skel-line {
  background: linear-gradient(90deg, var(--s2) 25%, rgba(255,255,255,.05) 50%, var(--s2) 75%);
  background-size: 1200px 100%;
  animation: blog-shimmer 1.4s infinite linear;
}

