:root {
  --color-primary: #1c1c1e;
  --color-secondary: #3a3a3c;
  --color-accent-energy: #f5c518;
  --color-accent-cta: #e8720c;
  --color-white: #ffffff;
  --color-bg-light: #f2f1ee;
  --color-border: #d6d3cd;
  --color-text-main: #1c1c1e;
  --color-success-green: #2d7a3a;
  --navy: #1c1c1e;
  --navy-mid: #2c2c2e;
  --navy-light: #3a3a3c;
  --orange: #e8720c;
  --orange-dark: #c45e08;
  --white: #ffffff;
  --grey: #7a7a7e;
  --text: #4a4a4e;
  --yellow: #f5c518;
  --yellow-dark: #d4a912;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Barlow", sans-serif;
  background: var(--color-bg-light);
  color: var(--color-text-main);
  overflow-x: hidden;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--color-accent-energy);
  border-radius: 3px;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  background: rgba(28, 28, 30, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(245, 197, 24, 0.2);
  transition: all 0.3s;
}
nav.scrolled {
  height: 60px;
  background: rgba(28, 28, 30, 1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--color-accent-energy);
  clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 20% 100%, 0 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 14px;
  color: var(--color-primary);
}
.logo-text {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--color-white);
  letter-spacing: 2px;
}
.logo-text span {
  color: var(--color-accent-energy);
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.65);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-accent-energy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--color-white);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}
.nav-cta {
  padding: 9px 22px;
  background: var(--color-accent-energy);
  color: var(--color-primary) !important;
  font-family: "Barlow Condensed", sans-serif !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase;
  clip-path: polygon(0 0, 92% 0, 100% 25%, 100% 100%, 8% 100%, 0 75%);
  transition: background 0.2s !important;
}
.nav-cta:hover {
  background: var(--yellow-dark) !important;
}
.nav-cta::after {
  display: none !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-white);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(28, 28, 30, 0.99);
  backdrop-filter: blur(20px);
  padding: 30px 5%;
  z-index: 999;
  border-bottom: 2px solid var(--color-accent-energy);
  flex-direction: column;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    color 0.2s,
    padding-left 0.2s;
}
.mobile-menu a:hover {
  color: var(--color-accent-energy);
  padding-left: 10px;
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--color-accent-energy);
  z-index: 9999;
  width: 0%;
}
.back-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  width: 48px;
  height: 48px;
  background: var(--color-accent-energy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 20% 100%, 0 80%);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.3s;
  text-decoration: none;
  color: var(--color-primary);
}
.back-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-top:hover {
  transform: translateY(-4px);
}
.fab-whatsapp {
  position: fixed;
  bottom: 40px;
  right: 28px;
  z-index: 200;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--color-white);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  animation: wabounce 2s 3s ease-in-out infinite;
}
.fab-whatsapp:hover {
  transform: scale(1.1);
  animation: none;
}
@keyframes wabounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 130px 5% 70px;
  background: var(--color-primary);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 60% 45%,
    rgba(245, 197, 24, 0.08) 0%,
    transparent 65%
  );
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 197, 24, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 197, 24, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 40%,
    transparent 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(245, 197, 24, 0.4);
  background: rgba(245, 197, 24, 0.07);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent-energy);
  margin-bottom: 20px;
  animation: fadeUp 0.8s 0.2s both;
}
.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--color-accent-energy);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.88;
  letter-spacing: -2px;
  text-transform: uppercase;
  animation: fadeUp 0.8s 0.4s both;
}
.hero h1 .orange {
  color: var(--color-accent-energy);
}
.hero h1 .stroke {
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.25);
  color: transparent;
}
.hero h1 .white {
  color: white;
}
.hero-right {
  max-width: 380px;
  animation: fadeUp 0.8s 0.6s both;
}
.hero-right p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
  margin-bottom: 22px;
}
.hero-stats {
  display: flex;
  gap: 36px;
}
.hstat-n {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 42px;
  color: var(--color-accent-energy);
  line-height: 1;
}
.hstat-l {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 3px;
}
.search-bar {
  background: var(--color-primary);
  border-bottom: 1px solid rgba(245, 197, 24, 0.12);
  padding: 18px 5%;
  position: sticky;
  top: 70px;
  z-index: 200;
}
.search-inner {
  display: flex;
  gap: 12px;
  align-items: center;
}
.search-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 18px;
  transition: border-color 0.2s;
}
.search-field:focus-within {
  border-color: var(--color-accent-energy);
}
.search-field i {
  color: rgba(255, 255, 255, 0.4);
}
.search-field input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  color: var(--color-white);
}
.search-field input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.sort-select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 36px 12px 16px;
  color: rgba(255, 255, 255, 0.65);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23F5C518' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color 0.2s;
}
.sort-select:focus {
  border-color: var(--color-accent-energy);
}
.sort-select option {
  background: var(--color-primary);
  color: var(--color-white);
}
.view-btns {
  display: flex;
  gap: 0;
}
.view-btn {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.2s;
}
.view-btn:first-child {
  border-right: none;
}
.view-btn.active,
.view-btn:hover {
  background: var(--color-accent-energy);
  border-color: var(--color-accent-energy);
  color: var(--color-primary);
}
.results-count {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}
.results-count strong {
  color: var(--color-accent-energy);
}
.active-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 12px 5%;
  background: var(--color-primary);
  border-bottom: 1px solid rgba(245, 197, 24, 0.1);
}
.active-filters.hidden {
  display: none;
}
.af-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.af-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: rgba(245, 197, 24, 0.12);
  border: 1px solid rgba(245, 197, 24, 0.3);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent-energy);
}
.af-chip button {
  background: none;
  border: none;
  color: var(--color-accent-energy);
  cursor: pointer;
  font-size: 11px;
  padding: 0;
  line-height: 1;
}
.af-clear {
  margin-left: auto;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.af-clear:hover {
  color: var(--color-accent-energy);
}
.catalog-layout {
  display: grid;
  grid-template-columns: 272px 1fr;
  min-height: 600px;
  align-items: start;
}
.sidebar {
  background: var(--color-primary);
  border-right: 1px solid rgba(245, 197, 24, 0.1);
  padding: 32px 24px;
  position: sticky;
  top: 138px;
  max-height: calc(100vh - 138px);
  overflow-y: auto;
}
.sidebar::-webkit-scrollbar {
  width: 4px;
}
.sidebar::-webkit-scrollbar-thumb {
  background: rgba(245, 197, 24, 0.3);
  border-radius: 2px;
}
.filter-group {
  margin-bottom: 30px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.filter-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.fg-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.fg-title i {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  transition: transform 0.3s;
}
.fg-title.collapsed i {
  transform: rotate(-90deg);
}
.fg-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fg-body.collapsed {
  display: none;
}
.filter-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  cursor: pointer;
}
.filter-opt input[type="checkbox"] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
}
.filter-opt input[type="checkbox"]:checked {
  background: var(--color-accent-energy);
  border-color: var(--color-accent-energy);
}
.filter-opt input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  color: var(--color-primary);
  font-weight: 900;
}
.filter-opt-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
  flex: 1;
  line-height: 1.4;
}
.filter-opt:hover .filter-opt-label {
  color: var(--color-white);
}
.filter-opt-count {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 1px;
}
.filter-range {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
}
.filter-range input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 10px;
  color: var(--color-white);
  font-family: "Barlow", sans-serif;
  font-size: 12px;
  outline: none;
  text-align: center;
  transition: border-color 0.2s;
}
.filter-range input:focus {
  border-color: var(--color-accent-energy);
}
.filter-range span {
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
}
.filter-apply {
  width: 100%;
  margin-top: 24px;
  padding: 13px;
  background: var(--color-accent-energy);
  color: var(--color-primary);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  clip-path: polygon(0 0, 94% 0, 100% 25%, 100% 100%, 6% 100%, 0 75%);
  transition: background 0.2s;
}
.filter-apply:hover {
  background: var(--yellow-dark);
}
.filter-reset {
  width: 100%;
  margin-top: 8px;
  padding: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-reset:hover {
  border-color: var(--color-accent-energy);
  color: var(--color-accent-energy);
}
.catalog-main {
  padding: 32px 28px;
  background: var(--color-bg-light);
}
.no-results {
  padding: 80px 20px;
  text-align: center;
  display: none;
}
.no-results i {
  font-size: 60px;
  color: rgba(245, 197, 24, 0.2);
  margin-bottom: 20px;
}
.no-results h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.no-results p {
  font-size: 14px;
  color: var(--color-text-main);
  opacity: 0.6;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border);
}
.prod-card {
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition:
    transform 0.35s,
    box-shadow 0.35s;
  text-decoration: none;
}
.prod-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(245, 197, 24, 0.35);
  z-index: 2;
}
.prod-card-img {
  height: 190px;
  background: linear-gradient(135deg, #2c2c2e 0%, #1c1c1e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.prod-img-bg {
  font-size: 120px;
  color: rgba(245, 197, 24, 0.07);
}
.prod-img-main {
  position: absolute;
  font-size: 52px;
  color: var(--color-accent-energy);
  filter: drop-shadow(0 0 20px rgba(245, 197, 24, 0.25));
}
.prod-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.badge-arriendo {
  background: var(--color-accent-energy);
  color: var(--color-primary);
}
.badge-servicio {
  background: rgba(45, 122, 58, 0.15);
  border: 1px solid rgba(45, 122, 58, 0.4);
  color: var(--color-success-green);
}
.badge-portuario {
  background: rgba(29, 111, 163, 0.15);
  border: 1px solid rgba(29, 111, 163, 0.4);
  color: #4a9fd4;
}
.badge-espacio {
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.35);
  color: #c4b5fd;
}
.prod-avail {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}
.prod-avail.ocupado {
  background: var(--color-accent-cta);
}
.prod-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.prod-cat {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent-cta);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.prod-cat::before {
  content: "";
  width: 14px;
  height: 2px;
  background: var(--color-accent-cta);
}
.prod-name {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 19px;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.2px;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.prod-desc {
  font-size: 12px;
  color: var(--color-text-main);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 14px;
  opacity: 0.68;
}
.prod-specs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.spec {
  padding: 3px 9px;
  background: rgba(28, 28, 30, 0.06);
  border: 1px solid rgba(28, 28, 30, 0.12);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-secondary);
}
.prod-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}
.prod-price {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: var(--color-primary);
}
.prod-price small {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-main);
  opacity: 0.5;
  font-weight: 400;
}
.prod-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent-cta);
  text-decoration: none;
  transition: gap 0.2s;
}
.prod-cta:hover {
  gap: 10px;
}
.products-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--color-border);
}
.prod-row {
  background: var(--color-white);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  transition: box-shadow 0.3s;
  text-decoration: none;
}
.prod-row:hover {
  box-shadow:
    inset 3px 0 0 var(--color-accent-energy),
    0 4px 30px rgba(0, 0, 0, 0.08);
}
.prod-row-img {
  width: 140px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #2c2c2e 0%, #1c1c1e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  color: var(--color-accent-energy);
  position: relative;
}
.prod-row-body {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  gap: 24px;
  align-items: center;
}
.prod-row-info {
  flex: 1;
}
.prod-row-cat {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent-cta);
  margin-bottom: 5px;
}
.prod-row-name {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: -0.2px;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.prod-row-desc {
  font-size: 13px;
  color: var(--color-text-main);
  line-height: 1.6;
  max-width: 480px;
  opacity: 0.7;
}
.prod-row-specs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.prod-row-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  flex-shrink: 0;
  padding: 20px 24px 20px 0;
}
.prod-row-badge {
  padding: 4px 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.prod-row-price {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--color-primary);
  text-align: right;
}
.prod-row-price small {
  display: block;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-main);
  opacity: 0.5;
  font-weight: 400;
}
.prod-row-btn {
  padding: 9px 20px;
  background: var(--color-accent-energy);
  color: var(--color-primary);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  clip-path: polygon(0 0, 90% 0, 100% 30%, 100% 100%, 10% 100%, 0 70%);
  transition: background 0.2s;
  white-space: nowrap;
}
.prod-row:hover .prod-row-btn {
  background: var(--yellow-dark);
}
.pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  align-items: center;
  padding: 48px 0 16px;
  flex-wrap: wrap;
}
.page-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-text-main);
  cursor: pointer;
  transition: all 0.2s;
  clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 20% 100%, 0 80%);
  text-decoration: none;
}
.page-btn:hover:not(.disabled) {
  background: rgba(245, 197, 24, 0.1);
  border-color: rgba(245, 197, 24, 0.4);
  color: var(--color-primary);
}
.page-btn.active {
  background: var(--color-accent-energy);
  border-color: var(--color-accent-energy);
  color: var(--color-primary);
}
.page-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.page-dots {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  color: var(--color-text-main);
  opacity: 0.4;
  padding: 0 4px;
  line-height: 42px;
}
.cta-band {
  background: var(--color-primary);
  padding: 70px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 197, 24, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 197, 24, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-inner {
  position: relative;
  z-index: 1;
}
.cta-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(34px, 5vw, 60px);
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 0.92;
  margin-bottom: 16px;
  color: var(--color-white);
}
.cta-title span {
  color: var(--color-accent-energy);
}
.cta-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 460px;
  margin: 0 auto 30px;
}
.btn-white {
  padding: 15px 34px;
  background: var(--color-accent-energy);
  color: var(--color-primary);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  clip-path: polygon(0 0, 92% 0, 100% 25%, 100% 100%, 8% 100%, 0 75%);
  transition:
    background 0.2s,
    transform 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-white:hover {
  background: var(--yellow-dark);
  transform: translateY(-3px);
}
footer {
  background: var(--color-primary);
  padding: 60px 5% 30px;
  border-top: 3px solid var(--color-accent-energy);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}
.footer-brand-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 20px;
  max-width: 280px;
}
.footer-certif {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.certif-badge {
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.footer-col-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links:not(.no-dash) a::before {
  content: "—";
  color: var(--color-accent-energy);
  font-size: 10px;
}
.footer-links a:hover {
  color: var(--color-accent-energy);
}
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}
.footer-copy span {
  color: var(--color-accent-energy);
}
@keyframes skel-shimmer {
  0% {
    background-position: -600px 0;
  }
  100% {
    background-position: 600px 0;
  }
}
.skel-card {
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  pointer-events: none;
}
.skel-img {
  height: 190px;
  background: linear-gradient(
    90deg,
    rgba(28, 28, 30, 0.04) 0px,
    rgba(28, 28, 30, 0.08) 200px,
    rgba(28, 28, 30, 0.04) 400px
  );
  background-size: 600px 100%;
  animation: skel-shimmer 1.4s infinite linear;
}
.skel-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.skel-line {
  height: 12px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    rgba(28, 28, 30, 0.05) 0px,
    rgba(28, 28, 30, 0.1) 200px,
    rgba(28, 28, 30, 0.05) 400px
  );
  background-size: 600px 100%;
  animation: skel-shimmer 1.4s infinite linear;
}
.skel-short {
  width: 35%;
}
.skel-long {
  width: 85%;
  height: 18px;
}
.skel-mid {
  width: 65%;
}
.skel-xs {
  width: 25%;
}
.skel-tags {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.skel-tag {
  width: 60px;
  height: 22px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    rgba(245, 197, 24, 0.05) 0px,
    rgba(245, 197, 24, 0.1) 200px,
    rgba(245, 197, 24, 0.05) 400px
  );
  background-size: 600px 100%;
  animation: skel-shimmer 1.4s infinite linear;
}
.skel-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}
@keyframes card-enter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.prod-card.card-enter {
  animation: card-enter 0.4s ease both;
}
@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 960px) {
  .catalog-layout {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
    max-height: none;
    border-right: none;
    border-bottom: 1px solid rgba(245, 197, 24, 0.1);
  }
  .search-bar {
    top: 70px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hamburger {
    display: flex;
  }
  .nav-links {
    display: none;
  }
  .prod-row-img {
    width: 100px;
  }
}
@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .search-inner {
    flex-wrap: wrap;
  }
  .view-btns,
  .sort-select {
    display: none;
  }
  .prod-row {
    flex-direction: column;
  }
  .prod-row-img {
    width: 100%;
    height: 120px;
  }
  .prod-row-right {
    flex-direction: row;
    align-items: center;
    padding: 0 20px 20px;
  }
}


.footer-social {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Elimina el guion */
.footer-social a::before {
    display: none !important;
    content: none !important;
}

.footer-social a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

/* Móvil */
@media (max-width: 768px) {
    .footer-social {
        flex-direction: column;
        gap: 12px;
    }
}

.footer-social a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: .3s;
}

.footer-social a:hover {
    color: var(--primary);
}

.footer-social i {
    color: inherit;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(28, 28, 30, 0.06);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}