/* ============================================================
   Importaciones Wolskar — Main Stylesheet
   Theme: wolskar
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --bg:           oklch(100% 0 0);
  --surface:      oklch(97% 0.002 260);
  --fg:           oklch(12% 0.03 260);
  --muted:        oklch(50% 0.008 260);
  --border:       oklch(90% 0.004 260);
  --accent:       oklch(60% 0.22 45);
  --accent-2:     oklch(56% 0.18 255);
  --accent-dim:   oklch(60% 0.22 45 / 0.12);
  --navy:         #053370;
  --navy-dark:    #041d42;
  --header-bg:    #ffffff;
  --header-bg-scrolled: rgba(255,255,255,0.95);
  --footer-bg:    #053370;
  --dark-bg:      #0f1a2e;
  --font:         'Poppins', system-ui, sans-serif;
  --max-w:        1200px;
  --radius:       12px;
  --radius-sm:    8px;
  --radius-xl:    20px;
  --space-section: clamp(80px, 10vw, 140px);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font); }

/* ---- Utility ---- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.section { padding: var(--space-section) 0; }
.section-dark { background: var(--dark-bg); color: #fff; }
.section-surface { background: var(--surface); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.section-label::before {
  content: ''; width: 20px; height: 2px;
  background: var(--accent); border-radius: 1px;
}
.section-title {
  font-size: clamp(30px, 3.8vw, 44px); font-weight: 800;
  line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px;
}
.section-title.light { color: #fff; }
.section-desc {
  color: var(--muted); max-width: 560px; font-size: 16px; line-height: 1.75;
}
.section-desc.light { color: rgba(255,255,255,0.55); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius-sm); font-weight: 600;
  font-size: 15px; font-family: var(--font); cursor: pointer;
  border: none; transition: all 0.25s ease;
}
.btn-primary {
  background: var(--accent); color: #fff;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,78,0,0.3);
}
.btn-outline-light {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.06); }
.btn-outline {
  background: transparent; color: var(--fg);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ---- Header ---- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--header-bg); transition: all 0.3s ease;
}
.header.scrolled {
  background: var(--header-bg-scrolled);
  backdrop-filter: blur(16px); box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; padding: 0 24px;
}
.header-logo { display: flex; align-items: center; }
.header-logo img { height: 50px; width: auto; }
.header-nav { display: flex; gap: 36px; align-items: center; }
.header-nav a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--fg); transition: color 0.2s; position: relative;
}
.header-nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--accent); transition: width 0.25s ease;
}
.header-nav a:hover { color: var(--accent); }
.header-nav a:hover::after { width: 100%; }
.header-nav .cta-link {
  background: var(--accent); color: #fff; padding: 10px 24px;
  border-radius: var(--radius-sm); font-weight: 600; letter-spacing: 0;
  font-size: 14px; transition: transform 0.2s, box-shadow 0.2s;
}
.header-nav .cta-link::after { display: none; }
.header-nav .cta-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,78,0,0.35);
  color: #fff;
}
.header-nav .header-nav-list { display: flex; gap: 36px; list-style: none; margin: 0; }
.header-nav .header-nav-list a { padding: 0; }

.menu-toggle, .close-nav { display: none; }
.mobile-overlay { display: none; }

@media (max-width: 768px) {
  .menu-toggle {
    display: block; background: none; border: none;
    color: var(--fg); font-size: 24px; cursor: pointer; padding: 4px; line-height: 1;
  }
  .close-nav {
    display: block; position: absolute; top: 20px; right: 20px;
    background: none; border: none; color: rgba(255,255,255,0.6);
    font-size: 28px; cursor: pointer;
  }
  .header-nav {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--dark-bg); flex-direction: column; padding: 80px 32px 32px;
    gap: 24px; align-items: flex-start;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1); z-index: 101;
    box-shadow: -4px 0 24px rgba(0,0,0,0.3);
  }
  .header-nav.open { right: 0; }
  .header-nav a { color: rgba(255,255,255,0.8); font-size: 15px; }
  .header-nav .header-nav-list { flex-direction: column; gap: 24px; }
  .header-nav .cta-link { width: 100%; text-align: center; }
  .mobile-overlay {
    display: block; position: fixed; inset: 0; background: rgba(0,0,0,0.5);
    z-index: 99; opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
  }
  .mobile-overlay.show { opacity: 1; pointer-events: auto; }
}

/* ---- Hero ---- */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0f1a2e 0%, #1a2a44 100%);
  position: relative; overflow: hidden; padding-top: 68px;
}
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0.2; mix-blend-mode: overlay;
}
.hero-bg-glow {
  position: absolute; top: -30%; right: -15%; width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in oklch, var(--accent) 14%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 800px; padding: 0 24px; }
.hero-subtitle {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,78,0,0.12); color: var(--accent);
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 6px 16px; border-radius: 999px;
  margin-bottom: 24px; border: 1px solid rgba(255,78,0,0.2);
}
.hero-content h1 {
  font-size: clamp(40px, 5.5vw, 64px); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.03em; color: #fff; margin-bottom: 20px;
}
.hero-content h1 span {
  background: linear-gradient(135deg, var(--accent), oklch(60% 0.24 355));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-content p {
  font-size: clamp(15px, 1.2vw, 18px); color: rgba(255,255,255,0.6);
  max-width: 600px; margin: 0 auto 36px; line-height: 1.75;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 48px; max-width: 700px; margin-left: auto; margin-right: auto;
}
.hero-stat {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); padding: 20px 12px; text-align: center;
}
.hero-stat .num {
  display: block; font-size: clamp(28px, 3vw, 36px); font-weight: 800;
  color: var(--accent); line-height: 1.1; margin-bottom: 4px;
}
.hero-stat .label {
  display: block; font-size: 11px; color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.hero-strip {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 0; background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.04); overflow: hidden;
}
.hero-strip-inner {
  display: flex; gap: 48px; animation: scrollStrip 30s linear infinite;
  white-space: nowrap;
}
.hero-strip-inner .m-brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.25); font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.hero-strip-inner .m-brand img { height: 28px; width: auto; opacity: 0.35; filter: brightness(0) invert(1); }
@keyframes scrollStrip {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 720px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Services ---- */
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px;
}
.service-card {
  padding: 36px 28px; border-radius: var(--radius); position: relative;
  background-size: cover; background-position: center;
  min-height: 320px; display: flex; flex-direction: column;
  justify-content: flex-end; color: #fff; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.15); }
.sc-icon {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 20px;
  background: rgba(255,78,0,0.2); display: grid; place-items: center;
  color: var(--accent); transition: all 0.3s ease;
}
.service-card:hover .sc-icon { background: var(--accent); color: #fff; }
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 13px; opacity: 0.8; line-height: 1.65; }
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .services-grid { grid-template-columns: 1fr; } }

/* ---- About ---- */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 48px;
}
.about-map-wrap { position: relative; }
.about-map {
  width: 100%; aspect-ratio: 4 / 3; border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.about-map iframe { display: block; }
.about-img-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--accent); color: #fff; padding: 8px 20px;
  border-radius: 999px; font-size: 13px; font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.brand-logos {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px;
}
.brand-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface); border: 1px solid var(--border);
  padding: 4px 14px; border-radius: 999px; font-size: 12px; font-weight: 500;
}
.brand-tag img { height: 18px; width: auto; }
.about-text p { color: var(--muted); margin-bottom: 24px; line-height: 1.8; }
.about-features { margin-bottom: 32px; }
.about-features li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 15px;
}
.about-features li:last-child { border-bottom: none; }
.about-features .chk {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent-dim); color: var(--accent);
  display: grid; place-items: center; font-size: 12px; font-weight: 700;
  flex-shrink: 0;
}
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.about-stats .stat { text-align: center; }
.about-stats .stat-num {
  display: block; font-size: 32px; font-weight: 800; color: var(--accent); line-height: 1.1;
}
.about-stats .stat-lbl { font-size: 12px; color: var(--muted); }
@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---- Catalog ---- */
.catalog-tabs {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 40px; margin-bottom: 32px;
}
.catalog-tab {
  padding: 10px 24px; border-radius: 999px; border: 1.5px solid var(--border);
  background: transparent; font-family: var(--font); font-size: 13px; font-weight: 500;
  color: var(--muted); cursor: pointer; transition: all 0.2s;
}
.catalog-tab:hover { border-color: var(--accent); color: var(--accent); }
.catalog-tab.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.catalog-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.catalog-item {
  border-radius: var(--radius); overflow: hidden; position: relative;
  background-size: cover; background-position: center;
  min-height: 300px; display: flex; flex-direction: column;
  justify-content: flex-end; cursor: pointer; transition: transform 0.3s ease;
}
.catalog-item:hover { transform: translateY(-4px); }
.cat-badge, .p-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--accent); color: #fff; padding: 4px 14px;
  border-radius: 999px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.04em;
}
.p-brand-tag {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(4px);
  color: #fff; padding: 4px 14px; border-radius: 999px;
  font-size: 11px; font-weight: 600;
}
.cat-body, .p-body {
  background: linear-gradient(transparent, rgba(15,26,46,0.92));
  padding: 32px 20px 20px;
}
.cat-body h3, .p-body h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.compat { display: block; font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.cat-btn, .p-btn {
  background: var(--accent); color: #fff; border: none; padding: 8px 20px;
  border-radius: var(--radius-sm); font-family: var(--font); font-size: 13px;
  font-weight: 600; cursor: pointer; transition: all 0.2s;
}
.cat-btn:hover, .p-btn:hover { background: color-mix(in oklch, var(--accent) 85%, #000); }
.catalog-item.hidden { display: none; }
@media (max-width: 1024px) { .catalog-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .catalog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .catalog-grid { grid-template-columns: 1fr; } }

/* ---- Brands ---- */
.brands-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 48px;
}
.brand-item {
  text-align: center; padding: 28px 16px;
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius);
  transition: all 0.3s ease; cursor: default;
}
.brand-item:hover {
  border-color: var(--accent); background: rgba(255,255,255,0.03);
  transform: translateY(-4px);
}
.brand-logo-wrap {
  height: 60px; display: grid; place-items: center; margin-bottom: 12px;
}
.brand-logo-wrap img { max-height: 48px; max-width: 100%; width: auto; }
.brand-logo-wrap.bw img { filter: brightness(0) invert(1); opacity: 0.85; }
.brand-item:hover .brand-logo-wrap.bw img { opacity: 1; }
.brand-item span { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.7); }
@media (max-width: 800px) { .brands-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .brands-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---- Instagram ---- */
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.ig-card {
  aspect-ratio: 1; border-radius: var(--radius); position: relative;
  background-size: cover; background-position: center; overflow: hidden;
  transition: transform 0.3s ease;
}
.ig-card:hover { transform: translateY(-4px); }
.ig-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(131,58,180,0.8), rgba(253,29,29,0.8));
  display: grid; place-items: center; opacity: 0;
  transition: opacity 0.3s ease; cursor: pointer;
}
.ig-card:hover .ig-overlay { opacity: 1; }
.ig-overlay span { color: #fff; font-weight: 600; font-size: 14px; }
.ig-card-bottom {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: 32px 16px 12px; display: flex; align-items: center; gap: 12px;
}
.ig-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center; font-size: 16px; flex-shrink: 0;
}
.ig-user { font-size: 12px; font-weight: 700; color: #fff; }
.ig-desc { font-size: 11px; color: rgba(255,255,255,0.6); line-height: 1.4; }
.ig-cta { text-align: center; margin-top: 32px; }
@media (max-width: 720px) { .ig-grid { grid-template-columns: 1fr; } }

/* ---- CTA Box ---- */
.cta-box {
  background: linear-gradient(135deg, var(--dark-bg), #1a2a44);
  border-radius: var(--radius-xl); padding: 64px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in oklch, var(--accent) 10%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-actions .btn-outline-light { border-color: rgba(255,255,255,0.15); }

/* ---- Modal ---- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(6px);
  display: grid; place-items: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
  padding: 24px;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--bg); border-radius: var(--radius-xl);
  width: 100%; max-width: 700px; max-height: 90vh; overflow-y: auto;
  position: relative; transform: scale(0.95) translateY(10px);
  transition: transform 0.3s ease;
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal-close-btn {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 40px; height: 40px; border-radius: 50%; border: none;
  background: rgba(0,0,0,0.06); font-size: 20px; cursor: pointer;
  display: grid; place-items: center; transition: background 0.2s;
}
.modal-close-btn:hover { background: rgba(0,0,0,0.1); }
.modal-inner { display: flex; flex-direction: column; }
.modal-image {
  width: 100%; height: 300px; background-size: cover; background-position: center;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.modal-content { padding: 32px; }
.modal-badge {
  display: inline-block; background: var(--accent-dim); color: var(--accent);
  padding: 4px 14px; border-radius: 999px; font-size: 11px; font-weight: 600;
  margin-bottom: 12px;
}
.modal-content h3 { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.modal-desc { color: var(--muted); line-height: 1.7; margin-bottom: 20px; font-size: 15px; }
.modal-specs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.spec-tag {
  background: var(--surface); border: 1px solid var(--border);
  padding: 4px 14px; border-radius: 999px; font-size: 12px; font-weight: 500;
  color: var(--muted);
}
.modal-compat { margin-bottom: 24px; font-size: 14px; }
.modal-compat strong { color: var(--fg); }
.modal-compat span { color: var(--muted); }
.modal-contact-label { font-weight: 600; margin-bottom: 12px; font-size: 14px; }
.modal-contact-row { display: flex; gap: 12px; flex-wrap: wrap; }
.modal-contact-btn {
  padding: 12px 28px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 14px; text-align: center;
  transition: all 0.2s;
}
.modal-contact-btn.whatsapp {
  background: #25D366; color: #fff;
}
.modal-contact-btn.whatsapp:hover { background: #1ebe5d; }
.modal-contact-btn.phone {
  background: var(--surface); color: var(--fg); border: 1px solid var(--border);
}
.modal-contact-btn.phone:hover { border-color: var(--accent); }

/* ---- Footer ---- */
.footer {
  background: var(--footer-bg); color: rgba(255,255,255,0.7); padding: 64px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand-img-wrap {
  background: #fff; display: inline-block; padding: 8px 20px;
  border-radius: var(--radius-sm); margin-bottom: 20px;
}
.footer-brand-img-wrap img { height: 44px; width: auto; }
.footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.5); }
.footer h4 {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: #fff; margin-bottom: 20px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul li a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer ul li a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1); display: grid;
  place-items: center; color: rgba(255,255,255,0.5); transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 12px; color: rgba(255,255,255,0.3);
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 99;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: grid; place-items: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  animation: pulseWA 2s ease-in-out infinite;
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.08); }
@keyframes pulseWA {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.3); }
  50% { box-shadow: 0 4px 24px rgba(37,211,102,0.5); }
}

/* ---- Catalog Archive Page ---- */
.catalogo-hero {
  padding: 120px 0 40px; background: var(--dark-bg); color: #fff;
}
.catalogo-hero h1 { font-size: clamp(32px, 4vw, 48px); font-weight: 800; margin-bottom: 12px; }
.catalogo-hero p { color: rgba(255,255,255,0.55); max-width: 560px; margin: 0 auto 24px; }
.catalogo-stats {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
}
.catalogo-stats span { font-size: 13px; color: rgba(255,255,255,0.5); }
.catalogo-stats strong { color: var(--accent); }

.catalogo-toolbar { margin-bottom: 32px; }
.catalogo-search {
  width: 100%; padding: 14px 20px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-family: var(--font); font-size: 15px;
  outline: none; transition: border-color 0.2s; margin-bottom: 16px;
}
.catalogo-search:focus { border-color: var(--accent); }
.cat-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.cat-tab {
  padding: 8px 20px; border-radius: 999px; border: 1.5px solid var(--border);
  background: transparent; font-family: var(--font); font-size: 13px;
  font-weight: 500; color: var(--muted); cursor: pointer;
  transition: all 0.2s; text-decoration: none;
}
.cat-tab:hover, .cat-tab.active { border-color: var(--accent); color: var(--accent); }
.cat-tab.active { background: var(--accent); color: #fff; }

.prod-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.prod-item {
  border-radius: var(--radius); overflow: hidden; position: relative;
  background-size: cover; background-position: center;
  min-height: 300px; display: flex; flex-direction: column;
  justify-content: flex-end; cursor: pointer; transition: transform 0.3s ease;
}
.prod-item:hover { transform: translateY(-4px); }
@media (max-width: 1024px) { .prod-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .prod-grid { grid-template-columns: 1fr; } }

.pagination {
  display: flex; justify-content: center; align-items: center; gap: 6px;
  margin-top: 40px;
}
.pagination ul { display: flex; gap: 6px; list-style: none; }
.pagination li { display: inline; }
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 12px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500; color: var(--fg);
  transition: all 0.2s; text-decoration: none;
}
.pagination a:hover { border-color: var(--accent); color: var(--accent); }
.pagination .current {
  background: var(--accent); color: #fff; border-color: var(--accent);
}
.no-results { text-align: center; padding: 60px 0; grid-column: 1 / -1; }
.no-results p { color: var(--muted); margin-bottom: 20px; }

/* ---- Single Producto ---- */
.single-producto-page { padding-top: 100px; padding-bottom: 80px; }
.sp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.sp-gallery { position: sticky; top: 100px; }
.sp-main-img {
  width: 100%; aspect-ratio: 4 / 3; border-radius: var(--radius-xl);
  background-size: cover; background-position: center;
  border: 1px solid var(--border);
}
.sp-thumbs { display: flex; gap: 12px; margin-top: 12px; }
.sp-thumb {
  width: 80px; height: 80px; border-radius: var(--radius-sm);
  background-size: cover; background-position: center;
  border: 1px solid var(--border); cursor: pointer;
  transition: border-color 0.2s;
}
.sp-thumb:hover { border-color: var(--accent); }
.sp-info .sp-badge {
  display: inline-block; background: var(--accent-dim); color: var(--accent);
  padding: 4px 14px; border-radius: 999px; font-size: 11px; font-weight: 600;
  margin-bottom: 8px;
}
.sp-info .sp-brand {
  display: inline-block; background: var(--dark-bg); color: #fff;
  padding: 4px 14px; border-radius: 999px; font-size: 11px; font-weight: 600;
  margin-left: 8px; margin-bottom: 8px;
}
.sp-info h1 { font-size: 32px; font-weight: 800; margin-bottom: 16px; line-height: 1.15; }
.sp-info p { color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.sp-compat { margin-bottom: 20px; font-size: 15px; }
.sp-compat strong { color: var(--fg); }
.sp-specs { margin-bottom: 24px; }
.sp-specs strong { display: block; margin-bottom: 8px; }
.sp-specs ul { list-style: disc; padding-left: 20px; }
.sp-specs li { color: var(--muted); font-size: 14px; margin-bottom: 4px; }
.sp-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.sp-actions .btn-outline-light {
  color: var(--fg); border-color: var(--border);
}
.sp-actions .btn-outline-light:hover { border-color: var(--accent); color: var(--accent); }
@media (max-width: 800px) {
  .sp-grid { grid-template-columns: 1fr; }
  .sp-gallery { position: static; }
}

/* ---- WP Admin Bar offset ---- */
.admin-bar .header { top: 32px; }
.admin-bar .hero { padding-top: 100px; }
@media (max-width: 782px) {
  .admin-bar .header { top: 46px; }
}
