:root{
  --blue:#056eab;
  --orange:#f06b1e;
  --text:#0f172a;
  --muted:#64748b;
  --line:#e6edf5;
  --soft:#f6f8fb;
  --max:1140px;
  --shadow:0 14px 40px rgba(2,6,23,.10);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  color:var(--text);
  background:#fff;
  font-family:"Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial;
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.wrap{ max-width:var(--max); margin:0 auto; padding:0 18px; }
.center{ text-align:center; }
.mt{ margin-top:14px; }

h1,h2,h3,.nav,.btn,.ctaOrange,.bigTitle,.sectionTitle{
  font-family:"DM Sans", system-ui, sans-serif;
}

/* icons */
.ico{ width:14px; height:14px; display:inline-block; }

.ico--location{
  width:18px;
  height:18px;
  filter: brightness(0) invert(1);
}

/* TOPBAR */
.topbar{
  background:var(--blue);
  color:#fff;
  font-size:15px;
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 8px 22px rgba(2,6,23,.12);
}
.topbar__row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  padding:14px 0;
  flex-wrap:wrap;
}
.topbar__left, .topbar__right{ display:flex; gap:14px; align-items:center; flex-wrap:wrap; }
.topbar__item{ display:inline-flex; gap:10px; align-items:center; opacity:.95; }
.topbar__right .ico{ filter:invert(1); opacity:.9; }

/* MENU EN TOPBAR */
.topbarNav{
  display:flex;
  align-items:center;
  gap:26px;
  font-size:16px;
  font-weight:900;
  margin:0 auto;
}

.topbarNav a{
  color:#fff;
  opacity:.95;
  transition:.2s ease;
}

.topbarNav a:hover{
  opacity:1;
}

.topbarNav .nav__cta{
  background:var(--orange);
  padding:10px 18px;
  border-radius:12px;
  color:#fff;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.topbarNav .nav__cta:hover{
  background:#d95f17;
  color:#fff;
  opacity:1;
  transform: translateY(-1px);
}



/* SOCIAL */
.social{ display:flex; gap:10px; align-items:center; }
.social a{
  width:26px; height:26px; border-radius:8px;
  display:grid; place-items:center;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
}
.social img{ width:14px; height:14px; filter:invert(1); opacity:.95; }
.social--top a{ width:30px; height:30px; }
.social--footer a{ width:42px; height:42px; border-radius:14px; }

/* HEADER */
.header{ background:#fff; border-bottom:1px solid var(--line); }
.header__grid{
  display:grid;
  grid-template-columns:280px 1fr 300px;
  gap:16px;
  align-items:center;
  padding:14px 0;
}
.brand__logo{ height:160px; width:auto; }

/* SEARCH */
.search__label{
  font-weight:800;
  font-size:12px;
  color:var(--blue);
  margin-bottom:6px;
}
.search__box{ position:relative; }
.search__input{
  width:100%;
  border:1px solid var(--line);
  border-radius:6px;
  padding:12px 44px 12px 12px;
  outline:none;
  background:#fff;
}
.search__btn{
  position:absolute; right:8px; top:50%;
  transform:translateY(-50%);
  width:34px; height:34px;
  border:none; background:transparent; cursor:pointer;
}
.search__btn img{ width:18px; height:18px; }

.searchSuggest{
  position:absolute;
  top:calc(100% + 10px);
  left:0;
  right:0;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:0 22px 50px rgba(2,6,23,.14);
  padding:10px;
  z-index:30;
}

.searchSuggest[hidden]{
  display:none;
}

.searchSuggest__item{
  display:grid;
  grid-template-columns:58px 1fr;
  align-items:center;
  gap:12px;
  padding:10px;
  border-radius:14px;
  transition:background .2s ease, transform .2s ease;
}

.searchSuggest__item:hover{
  background:#f8fbff;
  transform:translateY(-1px);
}

.searchSuggest__thumb{
  width:58px;
  height:58px;
  border-radius:14px;
  background:#f4f8fc;
  border:1px solid rgba(5,110,171,.10);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.searchSuggest__thumb img{
  max-width:80%;
  max-height:80%;
  object-fit:contain;
}

.searchSuggest__name{
  font-family:"DM Sans", system-ui, sans-serif;
  font-size:15px;
  font-weight:800;
  color:#0b2f6a;
  line-height:1.25;
}

.searchSuggest__empty{
  padding:14px 12px;
  text-align:center;
  color:var(--muted);
  font-size:14px;
  font-weight:700;
}


/* actions */
.header__actions{ display:flex; justify-content:flex-end; gap:12px; align-items:center; }
.waStack{
  display:grid;
  gap:8px;
  margin-right:40px; /* 👈 mueve hacia la izquierda */
}

.waBtn{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:10px;
  background:#e8f7ef;
  border:1px solid rgba(34,197,94,.35);
  color:#0f5132;
  font-weight:800;
  font-size:12.5px;
  white-space:nowrap;
}
.waBtn__ico{
  width:28px; height:28px; border-radius:10px;
  background:#22c55e;
  display:grid; place-items:center;
}
.waBtn__ico img{ width:16px; height:16px; filter:invert(1); }
.waBtn__txt small{ display:block; font-weight:700; opacity:.9; }

.catalogBtn{
  width:76px; height:76px;
  border-radius:12px;
  background:var(--orange);
  color:#fff;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  gap:6px;
  box-shadow:0 16px 30px rgba(240,107,30,.25);
}
.catalogBtn__ico img{ width:22px; height:22px; filter:invert(1); }
.catalogBtn__txt{ font-weight:900; font-size:12px; }

/* NAV */
.navBar{ background:#fff; }
.navBar__row{ padding:10px 0; }
.nav{
  display:flex; justify-content:flex-end; gap:18px; flex-wrap:wrap;
  font-weight:900; font-size:13px; color:#0b2f6a;
}
.nav a{ opacity:.92; }
.nav a:hover{ opacity:1; color:var(--orange); }
.nav a.isActive{ color:var(--orange); }
.nav__cta{
  background:var(--orange);
  color:#fff;
  padding:10px 14px;
  border-radius:6px;
}

/* HERO SLIDER */
.hero{
  position:relative;
  width:100%;
  height:450px;
  overflow:hidden;
  background:var(--blue);
}
.hero__bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

/* SLIDE 1 CUSTOM (fondo + producto separado) */
.hero__slide--custom1{ position:absolute; inset:0; }

.hero__bg--custom1{
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.05), transparent 40%),
    linear-gradient(135deg, #056eab 0%, #083e6a 100%);
}

.hero__bg--custom1::after{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size:40px 40px;
  pointer-events:none;
}

/* SLIDE 2 (warehouse + packs) */
.hero__shade{
  position:absolute;
  inset:0;
  background: rgba(6, 30, 60, .55);
  z-index:1;
}

.hero__centerPack{
  position:relative;
  z-index:2;
  height:100%;
  display:grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  align-items:center;
  gap:22px;
}

.hero__side{
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero__sideImg{
  width: 380px;
  max-width: 100%;
  height:auto;
  filter: drop-shadow(0 22px 40px rgba(0,0,0,.35));
}

.hero__mid{
  text-align:center;
  color:#fff;
}

.hero__midLogo{
  height: 125px;
  width:auto;
  margin: 0 auto 12px;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,.35));
}

.hero__midTitle{
  margin: 0 0 16px;
  font-size: 30px;
  font-weight: 900;
}

.hero__waBtns{
  display:flex;
  flex-direction:column;
  gap:14px;
  align-items:center;
}

@media (max-width: 980px){
  .hero__centerPack{
    grid-template-columns:1fr;
    padding: 18px 0;
  }
  .hero__sideImg{ width: 260px; }
  .hero__midLogo{ height: 90px; }
  .hero__midTitle{ font-size: 24px; }
}

.hero__bg--warehouse{ background-image:url("assets/hero-warehouse.png"); }
.hero__bg--custom3{ background-image:url("assets/hero-3-bg.png"); }
.hero__bg--custom4{ background-image:url("assets/hero-4-bg.png"); }
.hero__bg--custom5{ background-image:url("assets/hero-5-bg.png"); }


/* Si quieres usar un PNG SOLO de fondo (sin producto), usa esto y comenta lo de arriba:
.hero__bg--custom1{
  position:absolute;
  inset:0;
  background:url("assets/hero-1-bg.png") center/cover no-repeat;
}
*/

.hero__content{
  position:relative;
  z-index:2;
  height:100%;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  align-items:center;
  gap:26px;
}


.hero__left{ max-width: 640px; color:#fff; }
.hero__title{
  margin:0 0 12px;
  font-size:44px;
  line-height:1.05;
  font-weight:900;
}
.hero__desc{
  margin:0 0 18px;
  opacity:.92;
  line-height:1.6;
  max-width: 62ch;
  font-size:16px;
}

.hero__right{
  width:42%;
  min-width:320px;
  display:flex;
  justify-content:flex-end;
  align-items:center;
}

.hero__product{
  max-height:380px;
  width:auto;
  filter: drop-shadow(0 25px 45px rgba(0,0,0,.35));
}

/* responsive */
@media (max-width: 980px){
  .hero__content{
    grid-template-columns:1fr;
    text-align:center;
  }

  .hero__right{
    width:100%;
    justify-content:center;
  }

  .hero__product{
    max-height:240px;
  }

  .hero__title{
    font-size:34px;
  }

  .hero__desc{
    font-size:14px;
  }
}

/* overlay for buttons */
.hero__overlay{
  position:absolute; inset:0;
  display:flex;
  gap:16px;
  z-index:2;
}
.hero__overlay--center{
  align-items:center; justify-content:center;
  flex-direction:column;
}
.hero__overlay--s1{
  align-items:flex-end; justify-content:flex-start;
  padding:0 0 56px 70px;
}
.hero__overlay--s3{
  align-items:flex-end; justify-content:center;
  padding:0 0 40px 0;
}
.hero__overlay--s4{
  align-items:center; justify-content:flex-start;
  padding:0 0 0 90px;
}

/* buttons */
.btn{
  font-weight:900;
  border-radius:10px;
  padding:14px 22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  box-shadow:0 18px 40px rgba(0,0,0,.25);
  border:2px solid transparent;
}
.btn__ico{
  width:18px;
  height:18px;
  flex:0 0 auto;
  display:block;
}
.btn__ico--big{
  width:20px;
  height:20px;
}

.btn--white{ background:#fff; color:var(--blue); }
.btn--orange{ background:var(--orange); color:#fff; }
.btn--blue{ background:#1d2d8f; color:#fff; }

.btn--waOrange{
  background:var(--orange);
  color:#fff;
  border-color: rgba(255,255,255,.7);
  border-radius:999px;
  padding:14px 28px;
  font-size:22px;
  letter-spacing:.4px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  min-width:290px;
}

.btn--waOrange .btn__ico{
  width:22px;
  height:22px;
  display:block;
  flex:0 0 22px;
}

/* sections */
.section{ padding:44px 0; }
.section--soft{ background:#f4f6f9; }

.section--catalog{
  background:linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  border-top:1px solid var(--line);
  padding:56px 0 64px;
}

.catalogBackRow{
  display:flex;
  justify-content:flex-start;
  margin-bottom:22px;
}

.catalogBackBtn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid rgba(5,110,171,.18);
  background:#fff;
  color:#0b2f6a;
  font-family:"DM Sans", system-ui, sans-serif;
  font-size:14px;
  font-weight:800;
  box-shadow:0 10px 24px rgba(2,6,23,.06);
  transition:.25s ease;
}

.catalogBackBtn:hover{
  background:var(--blue);
  border-color:var(--blue);
  color:#fff;
  transform:translateY(-1px);
}

.catalogBackBtn__arrow{
  font-size:18px;
  line-height:1;
}

.catalogHead{
  margin-bottom:32px;
}

.catalogHead .bigTitle{
  font-size:34px;
  color:#0b2f6a;
}

.catalogHead .hint{
  margin-top:10px;
  font-size:14px;
  color:var(--muted);
  font-weight:700;
}

.catalogList{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:22px;
}

.catalogCard{
  position:relative;
  background:#fff;
  border:1px solid rgba(5,110,171,.10);
  border-radius:24px;
  box-shadow:0 16px 36px rgba(2,6,23,.08);
  padding:22px 18px 18px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  min-height:360px;
  overflow:hidden;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.catalogCard::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:5px;
  background:linear-gradient(90deg, var(--blue), var(--orange));
}

.catalogCard:hover{
  transform:translateY(-8px);
  box-shadow:0 24px 54px rgba(2,6,23,.14);
  border-color:rgba(5,110,171,.22);
}

.catalogCard__img{
  width:190px;
  height:190px;
  border-radius:24px;
  background:linear-gradient(180deg, #f7fbff 0%, #eef5fb 100%);
  border:1px solid rgba(5,110,171,.10);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  margin-bottom:18px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.8);
}

.catalogCard__img img{
  max-width:84%;
  max-height:84%;
  object-fit:contain;
  transition:transform .3s ease;
}

.catalogCard:hover .catalogCard__img img{
  transform:scale(1.05);
}

.catalogCard__title{
  margin:0 0 10px;
  font-family:"DM Sans", system-ui, sans-serif;
  font-size:19px;
  font-weight:800;
  color:#0b2f6a;
  line-height:1.25;
}

.catalogCard__title::after{
  content:"Cotización inmediata";
  display:block;
  margin-top:8px;
  font-family:"Open Sans", system-ui, sans-serif;
  font-size:12px;
  font-weight:700;
  color:var(--muted);
  letter-spacing:.2px;
}

.catalogCard__btn{
  margin-top:auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:100%;
  padding:13px 16px;
  border-radius:999px;
  border:2px solid rgba(5,110,171,.20);
  background:#fff;
  color:#0b2f6a;
  font-family:"DM Sans", system-ui, sans-serif;
  font-size:14px;
  font-weight:900;
  transition:.25s ease;
  box-shadow:0 8px 18px rgba(2,6,23,.05);
}

.catalogCard__btn::before{
  content:"";
  width:18px;
  height:18px;
  display:block;
  background:url("assets/icons/whatsapp.svg") center/contain no-repeat;
}

.catalogCard__btn:hover{
  background:var(--blue);
  border-color:var(--blue);
  color:#fff;
  transform:translateY(-1px);
}

.catalogCard__btn:hover::before{
  filter:brightness(0) invert(1);
}

.sectionTitle{
  margin:0 0 10px;
  font-size:26px;
  font-weight:900;
  color:#0b2f6a;
  display:flex; align-items:center; gap:10px;
}
.bar{ width:6px; height:22px; border-radius:999px; background:var(--blue); }

.bigTitle{ margin:0; font-size:26px; font-weight:900; color:#0b2f6a; }
.hint{ margin-top:8px; color:var(--blue); font-weight:900; font-size:13px; }

/* about */
.about{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:center; /* evita que el collage “se vea demasiado alto” vs el texto */
}
.collage{
  display:grid;
  gap:10px;
  border-radius:18px;
  padding:12px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  background:#fff;
}

.collage img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:18px;
  transition: transform .35s ease;
}

.collage img:hover{
  transform: scale(1.03);
}

/* Collage PRO (A3): 3 imágenes (1 izquierda / 2 derecha) */
.collage--A5{
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: repeat(4, 1fr);
  height: 310px;
}

/* Izquierda: 1 imagen grande */
.collage--A5 img:nth-child(1){
  grid-column: 1;
  grid-row: 1 / span 4;
}

/* Derecha: 2 imágenes apiladas */
.collage--A5 img:nth-child(2){
  grid-column: 2;
  grid-row: 1 / span 2;
}

.collage--A5 img:nth-child(3){
  grid-column: 2;
  grid-row: 3 / span 2;
}

/* Responsive */
@media (max-width:980px){
  .collage--A5{
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .collage--A5 img{
    grid-column: auto !important;
    grid-row: auto !important;
    height: 180px;
  }
}

.about__copy p{
  margin:0;
  color:var(--muted);
  font-size:13.5px;
  line-height:1.65;
  max-width:520px;
}
.about__copy p + p{ margin-top:10px; }

.stats{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  margin-top:20px;
}

.stat{
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:14px 18px;
  box-shadow:0 10px 24px rgba(2,6,23,.06);
  min-width:110px;
  text-align:left;
}

.stat__v{
  font-size:30px;
  font-weight:900;
  color:var(--blue);
}

.stat__t{
  font-size:12px;
  color:var(--muted);
  font-weight:700;
  margin-top:4px;
}
.ctaOrange{
  margin-top:16px;
  display:inline-flex; align-items:center; gap:10px;
  background:var(--orange);
  color:#fff;
  padding:12px 16px;
  border-radius:8px;
  font-weight:900;
  box-shadow:0 16px 30px rgba(240,107,30,.22);
}
.ctaOrange__ico{ width:18px; height:18px; filter:invert(1); }

/* ============================= */
/* CATEGORÍAS + PRODUCTOS (NUEVO) */
/* ============================= */
.catRow{
  margin-top:26px;
  display:flex;
  flex-wrap:nowrap;
  justify-content:center;
  gap:12px;
  overflow-x:auto;
  padding-bottom:6px;
  -webkit-overflow-scrolling:touch;
}

.catRow::-webkit-scrollbar{
  height:6px;
}

.catRow::-webkit-scrollbar-thumb{
  background:rgba(5,110,171,.25);
  border-radius:999px;
}

.catRow::-webkit-scrollbar-track{
  background:transparent;
}

.cat{
  appearance:none;
  border:1.5px solid rgba(5,110,171,.18);
  background:#fff;
  color:#0b2f6a;
  border-radius:999px;
  padding:14px 18px;
  min-height:auto;
  min-width:180px;
  text-align:center;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(2,6,23,.06);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
  position:relative;
  overflow:hidden;
  transition:all .25s ease;
}

.cat::after,
.cat::before{
  display:none;
  content:none;
}

.cat__k{
  display:block;
  font-weight:900;
  font-size:14px;
  letter-spacing:.4px;
  line-height:1.1;
}

.cat__t{
  display:block;
  margin:0;
  font-weight:700;
  font-size:12px;
  line-height:1.2;
  opacity:.82;
}

/* ANIMACIÓN CATEGORÍAS */
.cat{
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  will-change: transform;
}

.cat:hover{
  transform:translateY(-2px);
  border-color:rgba(5,110,171,.38);
  box-shadow:0 16px 34px rgba(2,6,23,.10);
  background:#f8fbff;
}

.cat::before{
  content:"";
  position:absolute;
  inset:-40% -60%;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,.18) 50%, transparent 60%);
  transform: translateX(-30%) rotate(10deg);
  opacity:0;
  transition: opacity .25s ease, transform .45s ease;
}

.cat:hover::before{
  opacity:1;
  transform: translateX(30%) rotate(10deg);
}

.prodRow{
  margin-top:0;
  position:relative;
  width:100%;
  min-width:0;
  overflow:hidden;
}

.prodSlider{
  margin-top:36px;
  position:relative;
  width:100%;
}

.prodSlider__arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:5;
  width:46px;
  height:46px;
  border:none;
  border-radius:999px;
  background:#fff;
  color:#0b2f6a;
  box-shadow:0 10px 24px rgba(2,6,23,.10);
  font-size:28px;
  font-weight:900;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.25s ease;
}

.prodSlider__arrow--prev{
  left:-18px;
}

.prodSlider__arrow--next{
  right:-18px;
}


.prodSlider__arrow:hover{
  background:var(--blue);
  color:#fff;
}

.prodSlider__arrow.isHidden{
  opacity:0;
  pointer-events:none;
}

.prodGroup{
  display:none;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:24px;
  width:100%;
  min-width:0;
}

.prodGroup.isActive{
  display:grid;
}

.prodGroup.isScrollable{
  display:flex;
  gap:24px;
  overflow-x:auto;
  overflow-y:hidden;
  scroll-behavior:smooth;
  padding:0 0 4px 0;
  width:100%;
}

.prodGroup.isScrollable::-webkit-scrollbar{
  height:6px;
}

.prodGroup.isScrollable::-webkit-scrollbar-thumb{
  background:rgba(5,110,171,.22);
  border-radius:999px;
}

.prodGroup.isScrollable::-webkit-scrollbar-track{
  background:transparent;
}

.prodGroup.isScrollable .pCard{
  flex:0 0 calc((100% - 72px) / 4);
}

.prodGroup.isScrollable .pCard:hover{
  transform:none;
}
.pCard{
  background:#fff;
  border-radius:26px;
  padding:28px 22px;
  text-align:center;
  box-shadow:0 18px 45px rgba(2,6,23,.10);
  border:1px solid #e6edf5;
  display:flex;
  flex-direction:column;
  align-items:center;
  min-height:360px;
  flex-shrink:0;
}

.pCard__img{
  width:170px;
  height:170px;
  border-radius:26px;
  background:#f1f5fb;
  border:1px solid rgba(5,110,171,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  margin-bottom:18px;
}
.pCard__img img{
  max-width:86%;
  max-height:86%;
  object-fit:contain;
}

.pCard__title{
  margin:6px 0 10px;
  font-size:18px;
  font-weight:900;
  color:#0b2f6a;
}

.pCard__desc{
  margin:0;
  font-size:14px;
  color:var(--muted);
  line-height:1.55;
  min-height:72px;
}

.pCard__btn{
  margin-top:auto;
  width:100%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  border:2px solid rgba(5,110,171,.30);
  background:#fff;
  color:#0b2f6a;
  font-weight:900;
  font-size:14px;
  transition:.25s ease;
}
.pCard__btn:hover{
  background:var(--blue);
  border-color:var(--blue);
  color:#fff;
}

/* ANIMACIÓN PRODUCTOS */
.pCard{
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  will-change: transform;
}

.pCard:hover{
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(2,6,23,.16);
  border-color: rgba(5,110,171,.35);
}

.pCard__img img{
  transition: transform .35s ease;
  will-change: transform;
}

.pCard:hover .pCard__img img{
  transform: scale(1.06);
}

.pCard__img{
  transition: box-shadow .25s ease, border-color .25s ease;
}

.pCard:hover .pCard__img{
  box-shadow: 0 18px 45px rgba(5,110,171,.18);
  border-color: rgba(5,110,171,.25);
}

.pCard__btn{
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}

.pCard:hover .pCard__btn{
  transform: translateY(-1px);
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

/* blue section */
.blueSection{
  background:var(--blue);
  color:#fff;
  padding:44px 0 30px;
}
.blueSection__title{ margin:0; font-size:26px; font-weight:900; }
.blueSection__desc{ margin:8px auto 0; max-width:70ch; font-size:12.5px; opacity:.92; }

.gallerySwiper{
  margin-top:18px;
  position:relative;
  padding:0 24px 34px;
}

.gallerySwiper .swiper-slide{
  height:auto;
}

.blueGallery__img{
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.20);
  box-shadow:0 18px 40px rgba(2,6,23,.25);
  height:220px;
  background:rgba(255,255,255,.10);
}

.blueGallery__img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallerySwiper__prev,
.gallerySwiper__next{
  position:absolute;
  top:50%;
  transform:translateY(-58%);
  width:38px;
  height:38px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.28);
  backdrop-filter:blur(4px);
  cursor:pointer;
  z-index:3;
}

.gallerySwiper__prev{ left:0; }
.gallerySwiper__next{ right:0; }

.gallerySwiper__prev::before,
.gallerySwiper__next::before{
  content:"";
  position:absolute;
  inset:0;
  margin:auto;
  width:10px;
  height:10px;
  border-top:2px solid #fff;
  border-right:2px solid #fff;
}

.gallerySwiper__prev::before{
  transform:rotate(-135deg);
}

.gallerySwiper__next::before{
  transform:rotate(45deg);
}

.gallerySwiper__pagination{
  display:flex;
  justify-content:center;
  margin-top:16px;
}

.gallerySwiper__pagination .swiper-pagination-bullet{
  width:10px;
  height:10px;
  border-radius:999px;
  border:2px solid rgba(255,255,255,.75);
  background:transparent;
  opacity:1;
}

.gallerySwiper__pagination .swiper-pagination-bullet-active{
  background:#fff;
  border-color:#fff;
}

/* orange CTA */
.orangeCta{ background:var(--orange); color:#fff; padding:18px 0; }
.orangeCta__row{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
}
.orangeCta__left{ font-weight:900; font-size:12px; opacity:.95; }
.orangeCta__mid{ font-size:12px; opacity:.95; text-align:center; flex:1; min-width:220px; }
.orangeCta__btn{
  display:inline-flex; align-items:center; gap:10px;
  background:#fff; color:var(--blue);
  padding:10px 14px;
  border-radius:6px;
  font-weight:900;
  box-shadow:0 14px 30px rgba(0,0,0,.18);
  white-space:nowrap;
}
.orangeCta__ico{ width:18px; height:18px; }

/* map */
.map{ height:260px; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.map iframe{ width:100%; height:100%; border:0; }

/* footer */
.footer{ background:var(--blue); color:#fff; padding:26px 0; }
.footer__grid{
  display:grid;
  grid-template-columns:260px 1fr 1fr 1fr;
  gap:18px;
  align-items:start;
}
.footer{
  background:var(--blue);
  color:#fff;
  padding:20px 0 18px;
}

.footer__grid{
  display:grid;
  grid-template-columns:220px 1fr 1fr 1fr;
  gap:34px;
  align-items:start;
}

.footer__brand{
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding-top:0;
}

.footer__logo{
  height:150px;
  width:auto;
}

.footer__col h4{
  margin:0 0 12px;
  font-size:14px;
  font-weight:900;
  line-height:1.2;
}

.footer__col a,
.footer__col div{
  display:block;
  font-size:13px;
  line-height:1.45;
  opacity:.94;
  margin:0 0 8px;
}

.footer__col a:hover{
  opacity:1;
}

.footer__col .mt{
  margin-top:14px;
}

.footer .social--footer{
  display:grid;
  grid-template-columns:repeat(4, 58px);
  gap:14px;
  margin-top:10px;
  align-items:center;
  justify-content:start;
}

.footer .social--footer a{
  width:58px;
  height:58px;
  border-radius:20px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18);
}

.footer .social--footer img{
  width:24px;
  height:24px;
}

/* RESPONSIVE */
@media (max-width:980px){
  .header__grid{ grid-template-columns:300px 1fr 300px; /* más espacio al logo */
      gap:16px;
  align-items:center;
  padding:25px 0; /* más altura */
}
  .header__actions{ justify-content:flex-start; }
  .nav{ justify-content:flex-start; }

  .about{ grid-template-columns:1fr; align-items:start; }

.catRow{
  justify-content:flex-start;
  flex-wrap:nowrap;
  overflow-x:auto;
  gap:10px;
  padding-bottom:6px;
  -webkit-overflow-scrolling:touch;
}

.cat{
  min-width:220px;
  flex:0 0 auto;
}

.prodGroup{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

.prodGroup.isScrollable .pCard{
  flex:0 0 calc((100% - 24px) / 2);
}

  .blueGallery__img{ height:240px; }
  .gallerySwiper{ padding:0 20px 34px; }

  .footer__grid{
  grid-template-columns:1fr 1fr;
  gap:24px;
}

  .catalogHead .bigTitle{
    font-size:30px;
  }

  .catalogList{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:18px;
  }

  .catalogCard{
    min-height:330px;
  }

  .catalogCard__img{
    width:170px;
    height:170px;
  }

  .hero__overlay--s1{ padding:0 0 36px 24px; }
  .btn--waOrange{ font-size:18px; }
}

@media (max-width:520px){
  .topbar__right{ display:none; }

  .catRow{
    justify-content:flex-start;
    flex-wrap:nowrap;
    overflow-x:auto;
    gap:10px;
    padding-bottom:6px;
    -webkit-overflow-scrolling:touch;
  }

  .prodGroup{
  grid-template-columns:1fr;
}

.prodGroup.isScrollable .pCard{
  flex:0 0 100%;
}

.prodSlider{
  gap:8px;
}

.prodSlider__arrow{
  width:40px;
  height:40px;
  font-size:24px;
}
  .footer__grid{
  grid-template-columns:1fr;
  gap:20px;
}

.footer__brand{
  justify-content:flex-start;
}

.footer .social--footer{
  grid-template-columns:repeat(4, 52px);
  gap:10px;
}

.footer .social--footer a{
  width:52px;
  height:52px;
  border-radius:18px;
}

  .catalogList{
    grid-template-columns:1fr;
    gap:16px;
  }

  .catalogCard{
    min-height:300px;
    padding:20px 16px 16px;
  }

  .catalogCard__img{
    width:160px;
    height:160px;
  }

  .catalogCard__title{
    font-size:17px;
  }

  .catalogBackRow{
    margin-bottom:18px;
  }

  .catalogBackBtn{
    width:100%;
    justify-content:center;
  }  

  .cat{
    min-width:200px;
    flex:0 0 auto;
  }
}

/* ===== SWIPER HERO ===== */
.heroSwiper{
  width:100%;
  height:450px; /* fijo */
  position:relative;
}

.heroSwiper .swiper-wrapper,
.heroSwiper .swiper-slide{
  height:450px;
}

.heroSwiper .swiper-slide{
  position:relative;
  overflow:hidden;
}

/* slides con imagen completa */
.hero__imgFull{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Paginación (dots) Swiper más grandes */
.heroSwiper .swiper-pagination{
  bottom:14px !important;
}
.heroSwiper .swiper-pagination-bullet{
  width:14px;
  height:14px;
  border-radius:999px;
  background:transparent;
  border:2px solid rgba(255,255,255,.85);
  opacity:1;
  transition:.2s ease;
}
.heroSwiper .swiper-pagination-bullet-active{
  background:#fff;
  border-color:#fff;
  transform:scale(1.15);
}

/* Flechas */
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev{
  color:#fff;
}
.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after{
  font-size:22px;
}

.heroSlide--custom1 .hero__bg{
  position:absolute;
  inset:0;
  z-index:0;
}

.heroSlide--custom1 .hero__content{
  position:relative;
  z-index:2;
  height:100%;
}

/* ============ CATEGORÍAS (BOTONES) ============ */
/*
  Para que “DESTACADOS” se vea ARRIBA (en una fila completa) y debajo los otros 4:
  - En tu HTML ponle la clase `cat cat--featured` al botón Destacados.
*/

.catRow .cat{
  border:0;
  cursor:pointer;
  width:auto;
  text-align:center;
  flex:0 0 auto;
}

/* DESTACADOS arriba (ocupa toda la fila) */
.catRow .cat--featured{
  background:#fff7f1;
  color:var(--orange);
  border:1.5px solid rgba(240,107,30,.30);
  box-shadow:0 10px 26px rgba(240,107,30,.12);
  min-width:220px;
}

/* Asegura el texto en 2 líneas (título arriba + slogan abajo) */
.catRow .cat__k{
  display:block;
  font-weight:900;
  font-size:14px;
  letter-spacing:.6px;
  line-height:1.1;
}

.catRow .cat__t{
  display:block;
  margin:0;
  font-weight:700;
  font-size:13px;
  line-height:1.25;
  opacity:.95;
}

/* estado activo del botón (cuando lo seleccionas) */
.catRow .cat.isActive{
  background:var(--orange);
  color:#fff;
  border-color:var(--orange);
  transform:translateY(-2px);
  box-shadow:0 18px 38px rgba(240,107,30,.24);
}

.catRow .cat.isActive .cat__t{
  opacity:.96;
}

/* Si quieres que el ACTIVO se ponga naranja (excepto Destacados que ya es naranja)
   descomenta este bloque:

.catRow .cat.isActive:not(.cat--featured){
  background: linear-gradient(135deg, var(--orange), #d8540a);
}

*/

/* accesibilidad: cuando navegas con TAB */
.catRow .cat:focus-visible{
  outline:3px solid rgba(240,107,30,.38);
  outline-offset:3px;
}

/* ============ GRUPOS DE PRODUCTOS ============ */

/* ===== SLIDE 3 - BURBUPACK ===== */
.hero__bg--burbupack{
  background-image:url("assets/hero-burbupack-bg.png"); /* tu fondo morado */
  background-size:cover;
  background-position:center;
}

/* sombra más suave para que se lea el texto, sin oscurecer tanto */
.hero__shade--soft{
  background: rgba(6, 30, 60, .25);
}

/* acomodo y tamaño del PNG de burbupack */
/* ===== SLIDE 3 - BURBUPACK (tamaño grande del PNG) ===== */

/* Dale más espacio a la columna derecha (producto) SOLO en slide 3 */
.heroSlide--burbupack .hero__content{
  grid-template-columns: 1fr 1.25fr;  /* antes: 1.1fr .9fr */
}

/* Quita el límite de ancho/min-width heredado y permite que crezca */
.heroSlide--burbupack .hero__right{
  width:100%;
  min-width:0;              /* anula el min-width:320px */
  justify-content:flex-end;
  align-items:flex-end;
  overflow:visible;
}

/* Tamaño real del PNG dentro del hero de 450px */
.hero__product--burbupack{
  height: 440px;            /* 🔥 casi toda la altura del hero */
  width: auto;
  max-height: none;         /* quita el límite anterior */
  filter: drop-shadow(0 22px 45px rgba(0,0,0,.35));
}

/* Responsive */
@media (max-width: 980px){

  .heroSlide--burbupack .hero__content{
    grid-template-columns:1fr;
    text-align:center;
  }

  .hero__product--burbupack{
    height:260px;
  }
}

/* ===== SLIDE ENVÍOS (NARANJA) ===== */
.heroSlide--envios { position: relative; }

.hero__bg--envios{
  position:absolute; inset:0;
  background-image: url("assets/hero-envios.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__bg--envios::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity:.28;
  pointer-events:none;
}

.hero__enviosGrid{
  position:relative;
  z-index:2;
  height:100%;
  display:grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items:center;
  gap:20px;
}

/* Izq */
.hero__enviosDelivery{
  width: 360px;
  max-width: 100%;
  height:auto;
  filter: drop-shadow(0 18px 35px rgba(0,0,0,.25));
}

/* Centro */
.hero__enviosMid{ text-align:center; color:#fff; }
.hero__enviosTitle{
  margin:0 0 10px;
  font-size:44px;        /* igual línea “hero__title” */
  line-height:1.05;
  font-weight:900;
  letter-spacing:.5px;
}
.hero__enviosSub{
  margin:0 0 18px;
  font-size:22px;
  font-weight:800;
  opacity:.95;
}

.hero__enviosSocial{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:10px;
}

.hero__socialPill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background: rgba(255,255,255,.95);
  color:#0b2f6a;
  border-radius:999px;
  padding:10px 14px;
  font-weight:900;
  box-shadow: 0 14px 26px rgba(0,0,0,.12);
}
.hero__socialPill img{ width:18px; height:18px; }

/* Der */
.hero__enviosRight{ position:relative; display:flex; justify-content:center; align-items:center; }
.hero__enviosMap{
  width: 360px;
  max-width: 100%;
  height:auto;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.18));
}
.hero__enviosIcons{
  position:absolute;
  width: 136px;
  max-width: 38%;
  height:auto;
  left: 52%;
  top: 49%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.18));
}

/* Responsive */
@media (max-width:980px){
  .hero__enviosGrid{
    grid-template-columns: 1fr;
    text-align:center;
    padding: 18px 0;
  }
  .hero__enviosIcons{
    position:static;
    width:108px;
    max-width:32%;
    transform:none;
    margin-top:10px;
  }
  .hero__enviosTitle{ font-size:34px; }
  .hero__enviosSub{ font-size:18px; }
}

/* ===== SLIDE 5 - CARTÓN CORRUGADO ===== */
.heroSlide--carton{ position:relative; }

.hero__bg--carton{
  background-image:url("assets/hero-carton-bg.png");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

/* Layout: producto a la izquierda, texto a la derecha */
.hero__content--carton{
  grid-template-columns: .95fr 1.05fr;
  align-items:center;
}

/* Producto grande sin romper el alto del hero */
.hero__right--carton{
  width:100%;
  min-width:0;
  justify-content:flex-start; /* a la izquierda */
  align-items:flex-end;
}

.hero__product--carton{
  height: 430px;
  width:auto;
  max-height:none;
  filter: drop-shadow(0 22px 45px rgba(0,0,0,.35));
}

/* Ajustes de texto para que se parezca al diseño */
.hero__left--carton{ color:#fff; }

.hero__title--carton{
  font-size:44px;          /* igual que hero__title */
  letter-spacing:.5px;
  text-transform:none;
}

/* Un bloque de lectura más “limpio” */
.hero__desc--carton{
  max-width: 52ch;
  font-size:16px;          /* igual que hero__desc */
  line-height:1.7;
}

/* Responsive */
@media (max-width:980px){
  .hero__content--carton{
    grid-template-columns:1fr;
    text-align:center;
    gap:16px;
  }

  .hero__right--carton{
    justify-content:center;
  }

  .hero__product--carton{
    height:260px;
  }
}

.productPage{
  padding:40px 0 60px;
  background:#fff;
}

.productPage__breadcrumb{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:20px;
  font-family:"DM Sans", system-ui, sans-serif;
  font-size:14px;
  font-weight:700;
  color:var(--muted);
}

.productPage__breadcrumb a{
  color:#0b2f6a;
}

.productPage__breadcrumb a:hover{
  color:var(--orange);
}

.productPage__bar{
  background:var(--orange);
  color:#fff;
  border-radius:0;
  padding:18px 26px;
  margin-bottom:28px;
}

.productPage__bar h1{
  margin:0;
  font-family:"DM Sans", system-ui, sans-serif;
  font-size:28px;
  font-weight:900;
}

.productPage__grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:34px;
  align-items:start;
}

.productPage__mainImage{
  background:#fff;
  border-radius:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:560px;
  padding:20px;
}

.productPage__mainImage img{
  max-width:100%;
  max-height:520px;
  object-fit:contain;
}

.productPage__thumbs{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
}

.productThumb{
  border:2px solid transparent;
  background:#f7fafc;
  border-radius:14px;
  padding:8px;
  cursor:pointer;
  transition:.2s ease;
}

.productThumb img{
  width:100%;
  height:110px;
  object-fit:cover;
  border-radius:10px;
}

.productThumb.isActive{
  border-color:var(--orange);
}

.productPage__eyebrow{
  display:inline-block;
  margin-bottom:10px;
  font-family:"DM Sans", system-ui, sans-serif;
  font-size:13px;
  font-weight:800;
  color:var(--orange);
  text-transform:uppercase;
  letter-spacing:.4px;
}

.productPage__right h2{
  margin:0 0 6px;
  font-family:"DM Sans", system-ui, sans-serif;
  font-size:32px;
  font-weight:900;
  color:var(--blue);
}

.productPage__right h3{
  margin:0 0 18px;
  font-family:"DM Sans", system-ui, sans-serif;
  font-size:24px;
  font-weight:800;
  color:#2563eb;
}

.productPage__list{
  margin:0 0 22px 22px;
  padding:0;
  line-height:1.6;
  font-size:15px;
}

.productPage__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:var(--orange);
  color:#fff;
  padding:13px 18px;
  border-radius:999px;
  font-family:"DM Sans", system-ui, sans-serif;
  font-weight:900;
  box-shadow:0 14px 28px rgba(240,107,30,.20);
  transition:.25s ease;
}

.productPage__cta::before{
  content:"";
  width:18px;
  height:18px;
  background:url("assets/icons/whatsapp.svg") center/contain no-repeat;
  filter:brightness(0) invert(1);
}

.productPage__cta:hover{
  background:#d95f17;
  transform:translateY(-1px);
}

.productPage__tableWrap{
  margin-top:24px;
  overflow:auto;
}

.productPage__table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
  font-size:14px;
}

.productPage__table thead th{
  background:var(--blue);
  color:#fff;
  padding:14px 12px;
  text-align:center;
  font-family:"DM Sans", system-ui, sans-serif;
  font-weight:800;
}

.productPage__table tbody td{
  padding:14px 12px;
  text-align:center;
  border-bottom:1px solid #cfe0ef;
}

@media (max-width:980px){
  .productPage__grid{
    grid-template-columns:1fr;
  }

  .productPage__mainImage{
    min-height:420px;
  }

  .productPage__mainImage img{
    max-height:380px;
  }
}

@media (max-width:520px){
  .productPage__bar{
    padding:16px 18px;
  }

  .productPage__bar h1{
    font-size:24px;
  }

  .productPage__right h2{
    font-size:28px;
  }

  .productPage__right h3{
    font-size:21px;
  }

  .productPage__thumbs{
    grid-template-columns:repeat(2, 1fr);
  }

  .productThumb img{
    height:90px;
  }
}
.productPage__intro{
  margin:0 0 18px;
  font-size:15px;
  line-height:1.75;
  color:#334155;
}

.productPage__note{
  margin:14px 0 0;
  font-size:13px;
  line-height:1.6;
  color:var(--muted);
  font-weight:700;
}

.floatingWhatsApp{
  position:fixed;
  right:22px;
  bottom:22px;
  width:62px;
  height:62px;
  border-radius:999px;
  background:#25D366;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 14px 30px rgba(0,0,0,.18);
  z-index:9999;
  transition:transform .2s ease, box-shadow .2s ease;
}

.floatingWhatsApp:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 36px rgba(0,0,0,.22);
}

.floatingWhatsApp img{
  width:30px;
  height:30px;
  filter:brightness(0) invert(1);
}

@media (max-width:768px){
  .floatingWhatsApp{
    right:16px;
    bottom:16px;
    width:56px;
    height:56px;
  }

  .floatingWhatsApp img{
    width:28px;
    height:28px;
  }
}