/* ============================================================
   PAGE · CATALOGO (catalogo.html)
   Page-specific styles only. 29 shared rules removed
   (tokens, reset, nav, footer, buttons, wa-float, reveal) — those
   now live in the shared design system.
   ============================================================ */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-mobile-toggle { display: flex; }
    .nav-links.open { display: flex; position: absolute; top: 100%; left:0; right:0; flex-direction: column; background: var(--paper); padding: 24px 5vw; gap: 20px; }
  }
.page-header {
    padding: 160px 5vw 80px;
    background: linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
    text-align: center;
  }
.page-header-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ice);
    margin-bottom: 24px;
  }
.page-header-eyebrow::before, .page-header-eyebrow::after { content: ""; width: 30px; height: 1px; background: var(--ice); }
.page-header h1 {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(44px, 6vw, 88px);
    line-height: 0.98;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
  }
.page-header h1 em { font-style: italic; color: var(--ice); font-weight: 400; }
.page-header p {
    font-size: clamp(15px, 1.5vw, 18px);
    color: var(--ink-soft);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.6;
  }
.product-detail {
    padding: 100px 5vw;
    border-bottom: 1px solid var(--line);
  }
.product-detail.dark {
    background: var(--ink);
    color: var(--paper);
  }
.product-detail.dark .feature-title { color: var(--paper); }
.product-detail.dark .feature-desc { color: rgba(245,242,235,0.7); }
.product-detail.dark .product-detail-title { color: var(--paper); }
.product-detail.dark .product-detail-eyebrow { color: var(--ice-light); }
.product-detail.dark .product-detail-price { color: var(--paper); }
.product-detail.dark .product-detail-price-label { color: rgba(245,242,235,0.55); }
.product-detail-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
.product-detail.reversed .product-detail-inner {
    grid-template-areas: "content image";
  }
.product-detail.reversed .product-detail-image { grid-area: image; }
.product-detail.reversed .product-detail-content { grid-area: content; }
@media (max-width: 900px) {
    .product-detail-inner { grid-template-columns: 1fr; gap: 40px; }
    .product-detail.reversed .product-detail-inner { grid-template-areas: "image" "content"; }
  }
.product-detail-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: var(--shadow-strong);
  }
.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
.product-detail-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ice);
    margin-bottom: 24px;
  }
.product-detail-eyebrow::before { content: ""; width: 30px; height: 1px; background: currentColor; }
.product-detail-title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
  }
.product-detail-tagline {
    font-size: 17px;
    color: var(--ink-soft);
    opacity: 0.8;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.6;
  }
.product-detail.dark .product-detail-tagline { color: rgba(245,242,235,0.75); }
.feature-list {
    list-style: none;
    margin-bottom: 40px;
  }
.feature-list li {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
.product-detail.dark .feature-list li {
    border-bottom-color: rgba(245,242,235,0.12);
  }
.feature-list li:last-child { border-bottom: none; }
.feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--ice);
    color: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 2px;
  }
.feature-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
    letter-spacing: 0.01em;
  }
.feature-desc {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.55;
    opacity: 0.85;
  }
.product-detail-pricing {
    display: flex;
    align-items: baseline;
    gap: 24px;
    margin-bottom: 32px;
  }
.product-detail-price-label {
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ink-soft);
    opacity: 0.6;
  }
.product-detail-price {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 400;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.02em;
  }
.product-detail.dark .btn-primary { background: var(--paper); color: var(--ink); }
.product-detail.dark .btn-primary:hover { background: var(--ice); color: var(--paper); }
.compare-section {
    padding: 100px 5vw;
    background: var(--paper);
  }
.compare-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
.compare-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ice);
    margin-bottom: 24px;
  }
.compare-eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--ice); }
.compare-title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.05;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
  }
.compare-title em { font-style: italic; color: var(--ice); font-weight: 400; }
.compare-table {
    border: 1px solid var(--line-strong);
    border-radius: 6px;
    overflow: hidden;
    background: white;
  }
.compare-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid var(--line);
  }
.compare-row:last-child { border-bottom: none; }
.compare-row.header {
    background: var(--ink);
    color: var(--paper);
  }
.compare-row.featured-col {
    background: var(--cream);
  }
.compare-cell {
    padding: 18px 24px;
    font-size: 13px;
    display: flex;
    align-items: center;
    border-right: 1px solid var(--line);
  }
.compare-cell:last-child { border-right: none; }
.compare-row.header .compare-cell {
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 11px;
    border-right-color: rgba(245,242,235,0.12);
  }
.compare-row.header .compare-cell.featured {
    background: var(--ice);
  }
.compare-cell.featured {
    background: rgba(36, 94, 135, 0.05);
  }
.compare-feature {
    font-weight: 500;
    color: var(--ink);
  }
.compare-cell.center {
    justify-content: center;
    color: var(--ink-soft);
  }
.compare-yes {
    color: var(--ice);
    font-size: 16px;
    font-weight: 800;
  }
.compare-no {
    color: rgba(29,29,27,0.25);
    font-size: 16px;
  }
@media (max-width: 900px) {
    .compare-row { grid-template-columns: 1.4fr 0.7fr 0.7fr 0.7fr; }
    .compare-cell { padding: 14px 12px; font-size: 12px; }
  }
.specs-section {
    background: var(--ink);
    color: var(--paper);
    padding: 100px 5vw;
  }
.specs-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
.specs-title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.05;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
    color: var(--paper);
  }
.specs-title em { font-style: italic; color: var(--ice-light); font-weight: 400; }
.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(245,242,235,0.12);
  }
@media (max-width: 900px) {
    .specs-grid { grid-template-columns: repeat(2, 1fr); }
  }
.spec-cell {
    background: var(--ink);
    padding: 32px 28px;
  }
.spec-label {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ice-light);
    margin-bottom: 12px;
    font-weight: 600;
  }
.spec-value {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--paper);
  }
.spec-desc {
    font-size: 12px;
    opacity: 0.65;
    line-height: 1.5;
  }
.custom-section {
    padding: 100px 5vw;
    background: var(--paper-warm);
  }
.custom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
@media (max-width: 900px) {
    .custom-inner { grid-template-columns: 1fr; }
  }
.custom-image {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 6px;
  }
.custom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
.custom-content h2 {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
  }
.custom-content h2 em { font-style: italic; color: var(--ice); font-weight: 400; }
.custom-content p {
    font-size: 16px;
    color: var(--ink-soft);
    line-height: 1.65;
    margin-bottom: 24px;
  }
.custom-options {
    list-style: none;
    margin-bottom: 32px;
  }
.custom-options li {
    padding: 12px 0;
    font-size: 14px;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 12px;
  }
.custom-options li::before {
    content: "—";
    color: var(--ice);
    font-weight: 700;
  }
.cta-final {
    background: var(--ink);
    color: var(--paper);
    padding: 120px 5vw;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
.cta-final::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(36, 94, 135, 0.25), transparent 60%);
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
.cta-final h2 {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(40px, 6vw, 80px);
    line-height: 1;
    margin-bottom: 32px;
    letter-spacing: -0.025em;
    position: relative;
  }
.cta-final h2 em { font-style: italic; color: var(--ice-light); font-weight: 400; }
.cta-final p {
    font-size: 17px;
    opacity: 0.8;
    max-width: 540px;
    margin: 0 auto 48px;
    line-height: 1.6;
    font-weight: 300;
    position: relative;
  }
.cta-final-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
  }
.cta-final .btn-primary { background: var(--paper); color: var(--ink); }
.cta-final .btn-primary:hover { background: var(--ice); color: var(--paper); }
.cta-final .btn-secondary {
    background: transparent;
    color: var(--paper);
    border-color: var(--paper);
  }
.cta-final .btn-secondary:hover {
    background: var(--paper);
    color: var(--ink);
  }
.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 11px;
    color: rgba(245,242,235,0.45);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
.footer-inner a { color: rgba(245,242,235,0.7); text-decoration: none; margin: 0 12px; }
.footer-inner a:hover { color: var(--paper); }

/* ===== Fila de CTAs equipo: Cotizar + Pagar con BAC ===== */
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn-pay { background: var(--green, #25D366); color: #fff; }
.product-detail.dark .btn-pay { background: var(--green, #25D366); color: #fff; }
@media (hover: hover) and (pointer: fine) {
  .btn-pay:hover { background: #1fb855; }
}
@media (max-width: 560px) {
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn { width: 100%; justify-content: center; }
}
.pay-note { margin-top: 10px; font-size: 13px; line-height: 1.5; color: var(--ink-soft, #6b6b6b); max-width: 460px; }
.product-detail.dark .pay-note { color: rgba(255,255,255,.7); }
