/* ============================================================
   MAXIMUM – DESIGN SYSTEM
   ============================================================ */
:root {
  --red-primary: #C20E1A;
  --red-dark:    #9B0A13;
  --black-base:  #000000;
  --yellow:      #EFA522;
  --white:       #FFFFFF;
  --gray-light:  #F4F4F4;
  --gray-medium: #E0E0E0;
  --gray-dark:   #333333;
  --nav-height:  130px; /* Increased for a more premium, dominant feel */
  --max-wide:    1600px; /* Wider container for full-width impact */
  --max-content: 1280px;
  --font-main:   'Geogrotesque', sans-serif;
}

/* ============================================================
   LOCAL FONTS
   ============================================================ */
@font-face {
  font-display: swap; font-family:'Geogrotesque'; src:url('../fonts/GeogrotesqueCyr-Medium.woff2') format('woff2'); font-weight:500; font-style:normal; }
@font-face {
  font-display: swap; font-family:'Geogrotesque'; src:url('../fonts/GeogrotesqueCyr-MediumItalic.woff2') format('woff2'); font-weight:500; font-style:italic; }
@font-face {
  font-display: swap; font-family:'Geogrotesque'; src:url('../fonts/GeogrotesqueCyr-SemiBold.woff2') format('woff2'); font-weight:600; font-style:normal; }
@font-face {
  font-display: swap; font-family:'Geogrotesque'; src:url('../fonts/GeogrotesqueCyr-BoldItalic.woff2') format('woff2'); font-weight:700; font-style:italic; }

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body { font-family:var(--font-main); background:#fff; color:var(--gray-dark); line-height:1.6; overflow-x:hidden; }
a { text-decoration:none; color:inherit; transition:all .3s ease; }
ul { list-style:none; }
img { display:block; max-width:100%; }

/* ============================================================
   LAYOUT
   ============================================================ */
.wide-container {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 48px;
}

.container {
  width: 100%;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 30px;
}

/* Spacing utilities */
.pt-100 { padding-top:100px; }
.pb-100 { padding-bottom:100px; }
.pt-80  { padding-top:80px; }
.pb-80  { padding-bottom:80px; }
.pt-50  { padding-top:50px; }
.pb-50  { padding-bottom:50px; }
.mb-50  { margin-bottom:50px; }
.mb-40  { margin-bottom:40px; }
.mt-50  { margin-top:50px; }
.mt-30  { margin-top:30px; }
.mt-25  { margin-top:25px; }
.mt-20  { margin-top:20px; }
.mt-10  { margin-top:10px; }

/* Text utilities */
.text-center  { text-align:center; }
.text-red     { color:var(--red-primary) !important; }
.text-white   { color:var(--white) !important; }
.text-gray-light { color:#ccc; }
.text-bold    { font-weight:600; }
.bg-gray      { background-color:var(--gray-light); }
.bg-dark      { background-color:var(--black-base); }
.shadow-lg    { box-shadow:0 10px 40px rgba(0,0,0,.15); }
.hidden-mobile { display:inline-flex !important; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 24px; font-size:.95rem; font-weight:600;
  border-radius:4px; cursor:pointer; border:2px solid transparent;
  gap:8px; letter-spacing:.5px; font-family:var(--font-main);
  transition:all .3s ease;
  position:relative; overflow:hidden;
}
.btn::after {
  content:'';
  position:absolute; top:-50%; left:-75%;
  width:50%; height:200%;
  background:linear-gradient(120deg,transparent 0%,rgba(255,255,255,.22) 50%,transparent 100%);
  transform:skewX(-20deg);
  transition:left .55s ease;
  pointer-events:none;
}
.btn:hover::after { left:150%; }
.btn-primary { background:var(--red-primary); color:#fff; border-color:var(--red-primary); }
.btn-primary:hover { background:var(--red-dark); border-color:var(--red-dark); transform:translateY(-2px); box-shadow:0 6px 18px rgba(194,14,26,.35); }
.btn-outline { background:transparent; border-color:var(--red-primary); color:var(--red-primary); }
.btn-outline:hover { background:var(--red-primary); color:#fff; }
.btn-outline-white { background:transparent; border-color:#fff; color:#fff; }
.btn-outline-white:hover { background:#fff; color:var(--red-primary); }
.btn-white { background:#fff; color:var(--red-primary); border-color:#fff; }
.btn-white:hover { background:transparent; color:#fff; }
.btn-dark { background:var(--black-base); color:#fff; border-color:var(--black-base); }
.btn-dark:hover { background:#222; }
.btn-large { padding:14px 36px; font-size:1.1rem; }
.btn-block { display:block; width:100%; }

/* ============================================================
   SECTION TYPOGRAPHY
   ============================================================ */
.section-badge {
  display:block; color:var(--red-primary); font-size:.9rem;
  text-transform:uppercase; letter-spacing:3px; margin-bottom:12px; font-weight:600;
}
.section-title {
  font-size:2.8rem; color:var(--black-base); margin-bottom:20px;
  font-weight:700; text-transform:uppercase; line-height:1.15;
}
.title-divider {
  height:4px; width:60px; background:var(--yellow); margin-bottom:25px;
}
.center-div { margin-left:auto; margin-right:auto; }
.section-header { margin-bottom:50px; }

.brand-mark-img {
  display: inline-block;
  height: .8em;
  width: auto;
  vertical-align: baseline;
  border-radius: 4px;
}

/* ============================================================
   HEADER
   ============================================================ */
#main-header {
  position:sticky; top:0; width:100%;
  height:var(--nav-height); background:var(--red-primary);
  box-shadow:0 2px 12px rgba(0,0,0,.45); z-index:1000;
  transition:box-shadow .35s ease;
}
#main-header.header-scrolled {
  box-shadow:0 6px 32px rgba(0,0,0,.7);
}
#main-header.header-scrolled .header-logo-img {
  height:52px;
  transition:height .3s ease;
}

.header-inner {
  display:flex; align-items:center; justify-content:space-between;
  height:100%; max-width:var(--max-wide); margin:0 auto; padding:0 60px;
  gap: 80px; /* Added explicit gap to ensure elements don't feel crowded */
}

.logo {
  display: flex;
  align-items: center;
  width: auto;
  max-width: none;
  flex-shrink: 0;
}

.header-logo-img {
  height: 80px; /* Larger, more dominant logo */
  width: auto !important;
  max-width: none;
  object-fit: contain;
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 32px; /* Rebalanced spacing between CTAs */
}

.header-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 8px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: .8rem;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: .3px;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.header-btn i { font-size: 1.3rem; flex-shrink: 0; }
.header-btn:hover { transform: translateY(-2px); }

.header-btn-gold {
  background: linear-gradient(135deg, #F0C75E 0%, #D4A82E 55%, #B6871A 100%);
  color: #3a2a05;
  box-shadow: 0 4px 14px rgba(0,0,0,.35);
}
.header-btn-gold:hover { box-shadow: 0 8px 20px rgba(0,0,0,.5); }

.header-btn-dark {
  background: linear-gradient(135deg, #E2222F 0%, var(--red-primary) 55%, #7D0A12 100%);
  color: #fff;
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 4px 14px rgba(0,0,0,.35);
}
.header-btn-dark i { color: #fff; }
.header-btn-dark:hover { box-shadow: 0 8px 20px rgba(0,0,0,.5); }

.header-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #fff;
  font-size: 1rem;
  border-radius: 4px;
  background: rgba(255,255,255,.15);
  transition: background .3s ease;
}
.header-social a:hover { background: rgba(255,255,255,.35); }

.desktop-nav ul { display:flex; gap:42px; } /* Adjusted to balance larger link font size */
.desktop-nav a {
  color:#fff; font-weight:600; text-transform:uppercase;
  font-size:1.3rem; letter-spacing:1.2px; position:relative; /* Larger font for better legibility */
}
.desktop-nav a::after {
  content:''; position:absolute; bottom:-6px; left:0;
  width:0; height:2px; background:var(--yellow); transition:width .3s ease;
}
.desktop-nav a:hover::after { width:100%; }
.desktop-nav a:hover { color:var(--yellow); }

.mobile-menu-btn {
  display:none; background:none; border:none;
  color:#fff; font-size:1.6rem; cursor:pointer;
}

/* Mobile Menu */
.mobile-menu-overlay {
  position:fixed; top:0; right:-100%; width:100%; height:100vh;
  background:rgba(0,0,0,.97); z-index:2000; transition:right .4s ease;
  display:flex; flex-direction:column; justify-content:center; align-items:center;
}
.mobile-menu-overlay.active { right:0; }

.close-menu-btn {
  position:absolute; top:25px; right:25px;
  background:none; border:none; color:#fff; font-size:2rem; cursor:pointer;
}
.mobile-nav { text-align:center; }
.mobile-nav ul { margin-bottom:30px; }
.mobile-nav li { margin-bottom:25px; }
.mobile-nav a.mobile-link {
  color:#fff; font-size:1.5rem; font-weight:600;
  text-transform:uppercase; letter-spacing:2px;
}
.mobile-nav a.mobile-link:hover { color:var(--red-primary); }
.mobile-ctas { display:flex; flex-direction:column; gap:15px; margin-top:20px; }

/* ============================================================
   HERO / SLIDER
   ============================================================ */
.hero-section {
  width: 100%;
  background: #111;
  overflow: hidden;
}

.hero-slider-wrap {
  position: relative;
  width: 100%;
  /* Tall cinematic ratio – shows slides fully */
  aspect-ratio: 16 / 6.5;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .65s cubic-bezier(.645,.045,.355,1);
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #111;
}

/* Images fill the slide completely — cover with centered crop */
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Arrows */
.carousel-arrow {
  position:absolute; top:50%; transform:translateY(-50%);
  background:rgba(0,0,0,.45); color:#fff; width:54px; height:54px;
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  cursor:pointer; z-index:100; border:1px solid rgba(255,255,255,.15);
  font-size:1.2rem; backdrop-filter:blur(8px); transition:all .3s ease;
}
.carousel-arrow:hover {
  background:var(--red-primary); transform:translateY(-50%) scale(1.1);
  box-shadow:0 0 20px rgba(194,14,26,.5);
}
.carousel-arrow.prev { left:28px; }
.carousel-arrow.next { right:28px; }

/* Dots */
.carousel-dots {
  position:absolute; bottom:22px; left:50%; transform:translateX(-50%);
  display:flex; gap:12px; z-index:100;
}
.carousel-dot {
  width:12px; height:12px; border-radius:50%;
  background:rgba(255,255,255,.3); cursor:pointer;
  border:2px solid transparent; transition:all .3s ease;
}
.carousel-dot.active {
  background:var(--red-primary); transform:scale(1.3); border-color:#fff;
}

/* ============================================================
   DISTRIBUTOR BAR
   ============================================================ */
.dist-bar {
  background:var(--black-base);
  border-bottom:3px solid var(--red-primary);
  padding:0;
  overflow:hidden;
}
/* Marquee */
.dist-bar-marquee-wrap {
  overflow:hidden;
  width:100%;
  padding:20px 0;
}
.dist-bar-marquee-track {
  display:flex;
  width:max-content;
  animation:dist-marquee 32s linear infinite;
  will-change:transform;
}
.dist-bar-marquee-track:hover { animation-play-state:paused; }
.dist-bar-marquee-item {
  display:flex; align-items:center;
  gap:18px; padding:0 80px;
  white-space:nowrap;
}
.dist-bar-icon { color:var(--red-primary); font-size:1.3rem; }
.dist-bar-sep  { color:#555; font-weight:400; font-size:1.6rem; }
.dist-bar-dot  { color:#333; font-size:.55rem; }
.dist-bar-label {
  color:var(--red-primary); font-weight:800; text-transform:uppercase;
  font-size:1.7rem; letter-spacing:1.5px;
}
.dist-bar-desc { color:#fff; font-size:2rem; font-weight:800; letter-spacing:1px; }
@keyframes dist-marquee {
  0%   { transform:translateX(0); }
  100% { transform:translateX(-50%); }
}

/* ============================================================
   TECNOLOGÍA AUTOMOTRIZ
   ============================================================ */
.tech-section {
  padding:100px 0;
  background:#fff;
}
.tech-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.tech-badge {
  display:inline-block; color:var(--red-primary); font-size:1.3rem;
  text-transform:uppercase; letter-spacing:4px; font-weight:700;
  margin-bottom:18px;
}
.tech-brand-lockup {
  display: flex;
  align-items: center;
  gap: 20px;
  width: fit-content;
  margin-bottom: 24px;
  border-radius: 0;
  overflow: visible;
}
.tech-brand-lockup img {
  height: 64px;
  width: auto;
  display: block;
}
.tech-logo-inline {
  height: 44px;
  width: auto;
  display: block;
}
.tech-logo-img { display: none; }
.tech-text p { color:#555; margin-bottom:14px; font-size:1.05rem; line-height:1.7; }
.tech-features { margin-top:25px; }
.tech-features li {
  display:flex; align-items:center; gap:10px;
  font-weight:600; font-size:1.05rem; margin-bottom:12px;
}


/* ============================================================
   CATEGORÍAS — white card reference style
   ============================================================ */
.categories-section {
  padding: 80px 0 90px;
  background: #F7F7F7;
}

/* Section header */
.cat-section-header {
  margin-bottom: 44px;
}
.cat-eyebrow {
  display: block;
  color: var(--red-primary);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 10px;
}
.cat-main-title {
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--black-base);
  line-height: 1.15;
}

/* Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* Card — borderless, floats on section bg */
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  transition: transform .3s ease;
  text-decoration: none;
  cursor: pointer;
}
.category-card:hover {
  transform: translateY(-7px);
}

/* Image zone — clean white box, no padding */
.cat-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06); /* single clean shadow on the wrapper */
}
.cat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Evita que queden muy pequeñas */
  object-position: center;
  transition: transform .4s ease;
  /* Eliminamos el filter: drop-shadow que creaba el doble marco en JPGs */
}
.category-card:hover .cat-img-wrap img {
  transform: scale(1.06);
}
.cat-img-wrap {
  transition: box-shadow .35s ease;
}
.category-card:hover .cat-img-wrap {
  box-shadow: 0 12px 36px rgba(194,14,26,.22), 0 2px 8px rgba(0,0,0,.08);
}

/* Title directly below image, centered, bold */
.cat-info {
  padding: 18px 8px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  border: none;
}
.cat-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--black-base);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cat-title-icon {
  font-size: .85rem;
  color: var(--red-primary);
}
/* Hide CTA — not in reference */
.cat-cta { display: none; }

/* ============================================================
   PRODUCTS GRID
   ============================================================ */
.space-between { display:flex; justify-content:space-between; align-items:flex-end; }

.product-filters { display:flex; gap:10px; flex-wrap:wrap; }

.filter-btn {
  background:none; border:1px solid var(--gray-medium);
  padding:8px 18px; font-family:var(--font-main); font-weight:600;
  cursor:pointer; border-radius:30px; transition:all .3s ease; font-size:.9rem;
}
.filter-btn.active, .filter-btn:hover {
  background:var(--black-base); color:#fff; border-color:var(--black-base);
}

.products-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:28px;
}

.product-card {
  background:#fff; border:1px solid var(--gray-medium);
  border-radius:8px; padding:20px; position:relative;
  transition:all .3s ease; display:flex; flex-direction:column;
}
.product-card:hover { box-shadow:0 10px 30px rgba(0,0,0,.12); border-color:var(--red-primary); }

.product-tag {
  position:absolute; top:14px; right:14px; background:var(--black-base);
  color:#fff; font-size:.72rem; font-weight:700; padding:4px 10px; border-radius:4px;
}
.product-tag.highlight { background:var(--red-primary); }
.product-tag.premium   { background:var(--yellow); color:var(--black-base); }

.product-img {
  text-align:center; margin-bottom:18px; height:280px;
  display:flex; align-items:center; justify-content:center;
  position:relative; cursor:zoom-in; overflow:hidden;
}
.product-img img { width:100%; height:100%; object-fit:contain; display:block; transition:transform .25s ease; }
.product-img img.img-zoomed { transform: scale(1.35); transform-origin: center center; }
.product-img:hover img:not(.img-zoomed) { transform: scale(1.04); }

/* Zoom hint badge */
.zoom-hint {
  position:absolute; bottom:8px; right:8px;
  width:28px; height:28px; border-radius:50%;
  background:rgba(0,0,0,.45); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:.7rem; opacity:0; transition:opacity .2s;
  pointer-events:none; backdrop-filter:blur(4px);
}
.product-img:hover .zoom-hint { opacity:1; }

/* ── Lightbox ── */
.lightbox-overlay {
  position:fixed; inset:0; z-index:9999;
  background:rgba(0,0,0,.82);
  display:flex; align-items:center; justify-content:center;
  padding:20px; cursor:zoom-out;
  opacity:0; visibility:hidden;
  transition:opacity .22s ease, visibility .22s ease;
  backdrop-filter:blur(6px);
}
.lightbox-overlay.active { opacity:1; visibility:visible; }
.lightbox-box {
  position:relative; background:#fff; border-radius:20px;
  padding:32px 28px 22px;
  max-width:min(92vw, 860px); width:100%; max-height:95vh;
  display:flex; flex-direction:column; align-items:center; gap:16px;
  cursor:default; overflow:hidden;
  transform:scale(.88) translateY(12px);
  transition:transform .25s cubic-bezier(.34,1.56,.64,1);
  box-shadow:0 24px 60px rgba(0,0,0,.5);
}
.lightbox-overlay.active .lightbox-box { transform:scale(1) translateY(0); }
.lightbox-img-wrap {
  width:100%; display:flex; align-items:center; justify-content:center;
  max-height:82vh; overflow:hidden;
}
.lightbox-img { max-width:100%; max-height:82vh; object-fit:contain; border-radius:10px; }
.lightbox-name {
  font-size:.95rem; font-weight:700; text-align:center;
  color:#1a1a1a; line-height:1.4; margin:0;
}
.lightbox-close {
  position:absolute; top:12px; right:12px;
  width:38px; height:38px; border-radius:50%; border:none;
  background:#f0f0f0; color:#444; font-size:1rem;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:background .15s, color .15s; z-index:1;
}
.lightbox-close:hover { background:var(--red-primary); color:#fff; }
@media (prefers-color-scheme:dark) {
  .lightbox-box { background:#1e1e1e; }
  .lightbox-name { color:#f0f0f0; }
  .lightbox-close { background:#2e2e2e; color:#ccc; }
}
@media (max-width:600px) {
  .lightbox-box { padding:24px 16px 18px; border-radius:14px; }
  .lightbox-img { max-height:70vh; }
}

.product-info { margin-top:auto; }
.product-cat { font-size:.78rem; color:var(--red-primary); font-weight:600; text-transform:uppercase; margin-bottom:5px; display:block; }
.product-name { font-size:1.05rem; font-weight:700; color:var(--black-base); margin-bottom:8px; line-height:1.3; }
.product-size { font-size:.82rem; color:#777; }
.product-desc { font-size:.8rem; color:#555; font-weight:600; margin-bottom:6px; line-height:1.4; }

/* Load more */
.load-more-section { }
.catalog-counter { font-size:1rem; margin-bottom:20px; color:var(--gray-dark); }

/* ============================================================
   FEATURES / VALOR
   ============================================================ */
.features-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:28px; }

.feature-box {
  background:rgba(255,255,255,.05); padding:0 28px 38px;
  border-radius:8px; text-align:center; overflow:hidden;
  transition:transform .3s ease, box-shadow .3s ease;
  border:1px solid rgba(255,255,255,.08);
}
.feature-box:hover {
  transform:translateY(-8px);
  border-color:var(--red-primary);
  box-shadow: 0 16px 40px rgba(194,14,26,.25);
}
.feature-media {
  width: 100%;
  height: 160px;
  margin: 0 0 24px;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}
.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feature-media-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,.06);
  color: #777;
}
.feature-media-placeholder i { font-size: 2rem; }
.feature-media-placeholder span { font-size: .82rem; text-transform: uppercase; letter-spacing: 1px; }
.feature-box .icon-box { font-size:2.8rem; color:var(--yellow); margin:28px 0 18px; }
.feature-title { font-size:1.2rem; margin-bottom:12px; font-weight:600; color:#fff; }
.feature-box p { color:#999; font-size:.92rem; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background:linear-gradient(135deg, var(--red-dark), var(--red-primary));
  color:#fff;
  padding: 80px 0;
}
.cta-banner h2 { font-size:2.6rem; font-weight:700; margin-bottom:14px; }
.cta-banner p  { font-size:1.05rem; max-width:680px; margin:0 auto; opacity:.9; }
.cta-buttons   { display:flex; gap:18px; justify-content:center; flex-wrap:wrap; }

/* CTA extra grande */
.cta-banner-xl {
  padding: 0;
  position: relative;
  overflow: hidden;
}
.cta-banner-xl::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(255,255,255,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner-xl {
  padding: 100px 48px;
}
.cta-icon-wrap {
  font-size: 9rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 28px;
  line-height: 1;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.25));
  animation: pulse-cta 2.5s ease-in-out infinite;
}

/* Variante fondo dorado */
.cta-banner-gold {
  background: linear-gradient(135deg, #F5CB5F 0%, #EFA522 55%, #C88512 100%) !important;
  position: relative;
  overflow: hidden;
}
.cta-banner-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 25%,
    rgba(255,255,255,.18) 45%,
    rgba(255,255,255,.28) 50%,
    rgba(255,255,255,.18) 55%,
    transparent 75%
  );
  background-size: 200% 100%;
  animation: cta-sheen 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes cta-sheen {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.cta-banner-gold .cta-icon-wrap {
  color: var(--red-primary);
  filter: drop-shadow(0 4px 20px rgba(194,14,26,0.35));
  animation: icon-float 3s ease-in-out infinite;
}
@keyframes icon-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.cta-banner-gold .cta-title-xl {
  color: var(--black-base) !important;
  text-shadow: none !important;
}
.cta-banner-gold .cta-desc-xl {
  color: rgba(20,8,0,0.82) !important;
}
@keyframes pulse-cta {
  0%   { transform: scale(1);     filter: drop-shadow(0 4px 16px rgba(0,0,0,0.25)); }
  50%  { transform: scale(1.08);  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35)); }
  100% { transform: scale(1);     filter: drop-shadow(0 4px 16px rgba(0,0,0,0.25)); }
}
.cta-title-xl {
  font-size: 5.8rem !important;
  font-weight: 800 !important;
  margin-bottom: 20px !important;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
  line-height: 1.05;
}
.cta-desc-xl {
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  max-width: 100%;
  margin: 0 auto;
  opacity: 0.95;
  line-height: 1.7;
  letter-spacing: 0.3px;
}
.cta-line {
  display: block;
  white-space: nowrap !important;
  overflow: visible;
}
.btn-xl {
  padding: 18px 56px !important;
  font-size: 1.45rem !important;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  transition: all .3s ease;
}
.cta-buttons .btn-xl:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

/* ============================================================
   DOWNLOAD
   ============================================================ */
.section-grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.download-img-wrapper img { width:100%; border-radius:8px; }
.catalog-features { margin-top:0; }
.catalog-features li { margin-bottom:10px; font-weight:600; font-size:1.05rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-methods { border-top:1px solid var(--gray-medium); padding-top:30px; }
.method-item { display:flex; align-items:flex-start; gap:15px; margin-bottom:24px; }
.method-item i { font-size:1.5rem; color:var(--black-base); margin-top:3px; }
.method-item h5 { font-size:1.05rem; font-weight:700; color:var(--black-base); margin-bottom:3px; }
.method-item p  { color:#555; font-size:.92rem; }
.method-item--link { border-radius:10px; padding:10px 14px; margin-left:-14px; transition:background .2s; }
.method-item--link:hover { background:rgba(200,30,30,.06); }
.method-item--link:hover .fa-map-location-dot { color:var(--red-primary); }
.maps-badge { display:inline-flex; align-items:center; gap:5px; margin-top:6px; font-size:.78rem; font-weight:600; color:var(--red-primary); letter-spacing:.3px; }

.contact-form {
  background:#fff; padding:40px; border-radius:8px;
  box-shadow:0 10px 40px rgba(0,0,0,.1); border-top:4px solid var(--yellow);
}
.form-group { margin-bottom:20px; }
.form-group.row { display:flex; gap:20px; }
.form-group.row .col-6 { flex:1; }
.contact-form label { display:block; font-size:.88rem; font-weight:600; margin-bottom:7px; color:var(--black-base); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width:100%; padding:12px 15px; border:1px solid #ccc;
  border-radius:4px; font-family:var(--font-main); transition:all .3s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline:none; border-color:var(--red-primary); }

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer { background:var(--black-base); color:#fff; }
.footer-grid  { display:grid; grid-template-columns:2fr 1fr 1fr 1.5fr; gap:40px; }

.footer-logo-img { height: 60px; width: auto; display: block; }
.footer-desc { color:#aaa; font-size:.92rem; }

.social-links a {
  display:inline-flex; align-items:center; justify-content:center;
  width:38px; height:38px; background:rgba(255,255,255,.1);
  color:#fff; border-radius:4px; margin-right:8px;
}
.social-links a:hover { background:var(--red-primary); }

.footer-col h4 {
  font-size:1.1rem; font-weight:600; margin-bottom:18px;
  color:#fff; position:relative; padding-bottom:10px;
}
.footer-col h4::after {
  content:''; position:absolute; bottom:0; left:0;
  width:30px; height:2px; background:var(--red-primary);
}
.footer-col ul li { margin-bottom:9px; }
.footer-col ul a  { color:#aaa; font-size:.92rem; }
.footer-col ul a:hover { color:var(--yellow); padding-left:4px; }

.newsletter-form { display:flex; }
.newsletter-form input { width:100%; padding:10px 14px; border:none; outline:none; border-radius:4px 0 0 4px; font-family:inherit; }
.newsletter-form button { border-radius:0 4px 4px 0; padding:10px 18px; }

.footer-bottom { text-align:center; padding:20px 0; border-top:1px solid rgba(255,255,255,.08); color:#666; font-size:.88rem; }

/* ============================================================
   CATALOG CONTROLS
   ============================================================ */
.catalog-section { position:relative; }
.catalog-header { display:flex; justify-content:space-between; align-items:flex-end; flex-wrap:wrap; gap:20px; }
.catalog-controls { display:flex; gap:14px; align-items:center; flex-wrap:wrap; }

.search-box { position:relative; min-width:280px; }
.search-box i { position:absolute; top:50%; left:14px; transform:translateY(-50%); color:var(--gray-dark); font-size:1rem; }
.search-box input { width:100%; padding:11px 14px 11px 42px; border:1px solid var(--gray-medium); border-radius:6px; font-family:inherit; font-size:.92rem; outline:none; transition:all .3s; }
.search-box input:focus { border-color:var(--red-primary); box-shadow:0 0 10px rgba(194,14,26,.1); }

.sort-box select { padding:11px 18px; border:1px solid var(--gray-medium); border-radius:6px; font-family:inherit; font-size:.92rem; background:#fff; cursor:pointer; outline:none; min-width:150px; }
.sort-box select:focus { border-color:var(--red-primary); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1200px) {
  .wide-container { padding:0 30px; }
  .header-inner   { padding:0 30px; gap:36px; }
  .header-logo-img { height: 65px; }
  .desktop-nav ul { gap: 28px; }
  .header-actions { gap: 14px; }
  .header-btn { padding: 8px 14px; font-size: .72rem; }
  .header-social { display:none; }      /* oculta iconos sociales — liberan espacio */
  .hero-slider-wrap { aspect-ratio:16/7; }
  .tech-title  { font-size:2.6rem; }
  .section-title { font-size:2.4rem; }
  .features-grid { grid-template-columns:repeat(2,1fr); }
  .products-grid { grid-template-columns:repeat(3,1fr); }
}

/* ── Menú hamburguesa activo a partir de 1100px ── */
@media (max-width:1100px) {
  :root { --nav-height: 80px; }
  .header-logo-img { height: 52px; }
  .header-inner   { padding:0 28px; gap:16px; }
  .desktop-nav    { display:none; }
  .hidden-mobile  { display:none !important; }
  .mobile-menu-btn { display:block; }
}

@media (max-width:992px) {
  .header-logo-img { height: 42px; }
  .wide-container { padding:0 24px; }
  .header-inner   { padding:0 24px; }
  .hero-slider-wrap { aspect-ratio:16/7.5; }
  .tech-grid  { grid-template-columns:1fr; gap:40px; }
  .tech-title { font-size:2.2rem; }
  .category-grid { grid-template-columns:repeat(2,1fr); }
  .section-grid-2 { grid-template-columns:1fr; gap:40px; }
  .footer-grid { grid-template-columns:repeat(2,1fr); }
  .products-grid { grid-template-columns:repeat(2,1fr); }
  .features-grid { grid-template-columns:repeat(2,1fr); }
  .cta-banner h2 { font-size:2rem; }
}

@media (max-width:768px) {
  .wide-container { padding:0 18px; }
  .header-inner   { padding:0 18px; }
  .hero-slider-wrap { aspect-ratio:4/3; }
  .carousel-arrow  { display:none; }
  .carousel-dots   { bottom:14px; }
  .tech-section, .categories-section { padding:70px 0; }
  .tech-title   { font-size:2rem; }
  .section-title { font-size:2rem; }
  .cat-main-title { font-size:1.9rem; }
  .category-grid { grid-template-columns:repeat(2,1fr); gap:16px; }
  .cat-title  { font-size:1.1rem; }
  .products-grid { grid-template-columns:repeat(2,1fr); gap:12px; }
  .product-card  { padding:14px; }
  .product-img   { height:200px; margin-bottom:12px; }
  .product-name  { font-size:.95rem; }
  .features-grid { grid-template-columns:1fr; }
  .footer-grid   { grid-template-columns:1fr; }
  .dist-bar-label { font-size:1.4rem; }
  .dist-bar-desc  { font-size:1.5rem; }
  .dist-bar-marquee-item { padding:0 48px; gap:12px; }
  .dist-bar-marquee-wrap { padding:16px 0; }
  .space-between { flex-direction:column; align-items:flex-start; gap:20px; }
  .catalog-controls { width:100%; flex-direction:column; align-items:stretch; }
  .search-box { min-width:unset; }
  .form-group.row { flex-direction:column; gap:0; }
  .cta-buttons { flex-direction:column; align-items:center; }
}

@media (max-width:480px) {
  .hero-slider-wrap { aspect-ratio:1/1; }
  .category-grid    { grid-template-columns:1fr 1fr; gap:12px; }
  .products-grid    { grid-template-columns:repeat(2,1fr); gap:10px; }
  .product-card     { padding:10px; }
  .product-img      { height:160px; margin-bottom:8px; }
  .product-name     { font-size:.85rem; margin-bottom:5px; }
  .product-cat      { font-size:.7rem; margin-bottom:3px; }
  .product-size     { display:none; }
  .product-action   { margin-top:8px; }
  .btn-small        { font-size:.72rem; padding:7px 6px; }
  .tech-title       { font-size:1.7rem; }
}

/* ============================================================
   MAPA INTERACTIVO DE PERÚ
   ============================================================ */
.peru-map-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.peru-map-header {
  margin-bottom: 16px;
}
.peru-map-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-primary);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 10px;
}
.peru-map-subtitle {
  color: #777;
  font-size: .9rem;
  margin: 0;
}
.peru-map-container {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
  background: linear-gradient(135deg, #f7f8fa, #eef0f4);
}
.peru-map-legend {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: #555;
}
.active-legend .legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: var(--red-primary);
  flex-shrink: 0;
}

/* ============================================================
   FEATURED PRODUCTS — 2×2 más vistoso
   ============================================================ */
#featured-products-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
#featured-products-grid .product-card {
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
}
#featured-products-grid .product-img {
  height: 260px;
  margin-bottom: 14px;
}
#featured-products-grid .product-name {
  font-size: 1.18rem;
  margin-bottom: 0;
}
/* Solo imagen y título: ocultar categoría, descripción, tag premium y botón de ficha técnica */
#featured-products-grid .product-cat,
#featured-products-grid .product-size,
#featured-products-grid .product-tag.premium,
#featured-products-grid .product-action {
  display: none;
}

.destacados-badge {
  font-size: 1.3rem;
}


@media (max-width:992px) {
  #featured-products-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-title-xl { font-size: 3.8rem !important; }
  .cta-inner-xl { padding: 70px 24px; }
}
@media (max-width:768px) {
  .header-btn span { display: none; }
  .header-btn { padding: 8px; border-radius: 6px; }
  .header-btn i { font-size: 1.1rem; }
  .peru-map-container { max-width: 100%; }
  #featured-products-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  #featured-products-grid .product-card { padding: 16px; }
  #featured-products-grid .product-img  { height: 160px; }
  .cta-title-xl { font-size: 2.6rem !important; }
  .cta-icon-wrap { font-size: 4rem; }
}
@media (max-width:480px) {
  #featured-products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  #featured-products-grid .product-card { padding: 12px; }
  #featured-products-grid .product-img  { height: 120px; }
  #featured-products-grid .product-name { font-size: .9rem; }
}

/* ============================================================
   MODAL DISTRIBUIDORES LIMA
   ============================================================ */
.lima-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lima-modal-box {
  background: #fff;
  border-radius: 14px;
  max-width: 480px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 36px 28px 28px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.lima-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #f2f2f2;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}
.lima-modal-close:hover { background: #e2e2e2; }
.lima-modal-title {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--red-primary, #C20E1A);
}
.lima-distributors-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.lima-distributors-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-bottom: 1px solid #eee;
  padding-bottom: 14px;
}
.lima-distributors-list li:last-child { border-bottom: none; padding-bottom: 0; }
.lima-distributors-list li i {
  font-size: 1.3rem;
  color: #bbb;
  margin-top: 3px;
}
.lima-distributors-list .dist-name {
  font-weight: 600;
  color: #999;
  margin: 0 0 4px;
}
.lima-distributors-list .dist-meta {
  font-size: .85rem;
  color: #bbb;
  margin: 0;
}

/* ============================================================
   BOTÓN FLOTANTE WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.3);
  text-decoration: none;
  transition: transform .25s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid #25D366;
  animation: whatsapp-pulse 2s infinite;
  pointer-events: none;
}
@keyframes whatsapp-pulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}
@media (max-width:480px) {
  .whatsapp-float { width: 54px; height: 54px; font-size: 1.7rem; bottom: 20px; right: 20px; }
}

/* ============================================================
   MAP SLIDER TABS
   ============================================================ */
.map-tab-nav {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.map-tab-btn {
  padding: 8px 20px;
  border: 2px solid var(--red-primary);
  background: transparent;
  color: var(--red-primary);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: .88rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all .3s ease;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.map-tab-btn.active,
.map-tab-btn:hover { background: var(--red-primary); color: #fff; }

/* ============================================================
   UTILITY
   ============================================================ */
.w-100 { width: 100%; }

/* ============================================================
   SCROLL REVEAL GENÉRICO
   ============================================================ */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}
