/* =============================================
   ICO Food Service - B2B Home (Fiel al Figma)
   Figma node: 4043:12
   ============================================= */

/* ---- Fonts ---- */
@font-face { font-family: 'Avenir Next LT Pro'; src: url('../Avenir-next-lt-pro/AvenirNextLTPro-Regular.otf') format('opentype'); font-weight: 400; font-style: normal; }
@font-face { font-family: 'Avenir Next LT Pro'; src: url('../Avenir-next-lt-pro/AvenirNextLTPro-Demi.otf') format('opentype'); font-weight: 600; font-style: normal; }
@font-face { font-family: 'Avenir Next LT Pro'; src: url('../Avenir-next-lt-pro/AvenirNextLTPro-DemiIt.otf') format('opentype'); font-weight: 600; font-style: italic; }
@font-face { font-family: 'Avenir Next LT Pro'; src: url('../Avenir-next-lt-pro/AvenirNextLTPro-Bold.otf') format('opentype'); font-weight: 700; font-style: normal; }
@font-face { font-family: 'Avenir Next LT Pro'; src: url('../Avenir-next-lt-pro/AvenirNextLTPro-HeavyCn.otf') format('opentype'); font-weight: 800; font-style: normal; }
@font-face { font-family: 'Avenir Next LT Pro'; src: url('../Avenir-next-lt-pro/AvenirNextLTPro-MediumCn.otf') format('opentype'); font-weight: 500; font-style: normal; }

/* ---- Design Tokens ---- */
:root {
  --azul: #0B4460;
  --celeste: #459CD6;
  --verde: #8DBF3E;
  --blanco: #FFFFFF;
  --texto: #343737;
  --gris: #EAEAEA;
  --gris200: #CCCCCC;
  --gris900: #1A1A1A;
  --font: 'Avenir Next LT Pro', sans-serif;
  --poppins: 'Poppins', sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--texto); background: var(--blanco); line-height: 1.5; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 72px; }

/* ==================================================================
   1. PROMO BAR  (height: 51px, bg: #0B4460)
   ================================================================== */
.promo-bar {
  background: var(--azul);
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.promo-bar__content { display: flex; align-items: center; gap: 16px; }
.promo-bar__text { color: var(--blanco); font-size: 16px; font-weight: 700; }
.promo-bar__arrow { color: var(--blanco); font-size: 14px; opacity: 0.6; padding: 6px; }
.promo-bar__arrow:hover { opacity: 1; }
.promo-bar__close {
  position: absolute; right: 52px; top: 50%; transform: translateY(-50%);
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(255,255,255,0.15); color: var(--blanco); font-size: 11px;
  display: flex; align-items: center; justify-content: center;
}
.promo-bar__close:hover { background: rgba(255,255,255,0.3); }

/* ==================================================================
   2. PRE-HEADER  (height: 49px, bg: #0B4460)
   ================================================================== */
.pre-header {
  background: var(--azul);
  height: 49px;
}
.pre-header__inner {
  display: flex; align-items: stretch; justify-content: space-between; height: 100%;
}
.pre-header__left { display: flex; align-items: stretch; }

/* Tab "Clientes Horeca" - celeste rounded top tab */
.pre-header__tab {
  display: flex; align-items: center; gap: 8px;
  padding: 0 24px; font-size: 16px; white-space: nowrap;
}
.pre-header__tab--active {
  background: var(--celeste);
  color: var(--blanco);
  font-weight: 700;
  border-radius: 23.5px 23.5px 0 0;
  margin-top: 2px;
}
.pre-header__tab--inactive {
  color: #C4C4C4; font-weight: 600;
}
.pre-header__tab--inactive:hover { color: var(--blanco); }

.pre-header__right { display: flex; align-items: center; gap: 8px; }
.pre-header__link {
  color: var(--blanco); font-size: 14px; font-weight: 600;
  padding: 4px 8px; white-space: nowrap;
}
.pre-header__link:hover { opacity: 0.8; }
.pre-header__sep { width: 1px; height: 10px; background: rgba(255,255,255,0.5); }

/* ==================================================================
   3. HEADER  (bg: #459CD6 with organic wave pattern)
   ================================================================== */
.header { position: sticky; top: 0; z-index: 100; }

/* -- Top row -- */
.header__top {
  background: var(--celeste);
  padding: 17px 0;
  position: relative; overflow: hidden;
}
/* Organic wave decoration */
.header__top::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1280 209'%3E%3Cpath d='M0 6C45-9 90 16 135 31s90 10 135-5 90-40 135-45 90 15 135 30 90 15 135 0 90-40 135-50 90 5 135 20 90 25 135 15 90-30 65-40' fill='none' stroke='rgba(255,255,255,0.07)' stroke-width='100'/%3E%3Cpath d='M0 120C60 90 120 150 180 160s120-20 180-40 120 30 180 50 120-10 180-30 120 20 180 40' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='80'/%3E%3C/svg%3E");
  background-size: 1280px auto;
  background-repeat: repeat-x;
  background-position: center;
}
.header__top-inner {
  display: flex; align-items: center; gap: 24px;
  position: relative; z-index: 1;
}

/* Logo in white circle */
.header__logo-wrap {
  width: 100px; height: 100px;
  background: var(--blanco);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.header__logo-img { width: 80px; height: auto; }

/* Search bar */
.header__search {
  flex: 1; max-width: 544px; height: 52px;
  display: flex; border-radius: 30px; overflow: hidden;
  border: 2px solid var(--gris); background: var(--blanco);
}
.header__search-field {
  flex: 1; display: flex; align-items: center; gap: 12px; padding: 0 16px;
}
.header__search-field i { color: var(--gris200); font-size: 16px; }
.header__search-field input {
  border: none; background: none; font-family: var(--font);
  font-size: 14px; color: var(--texto); width: 100%; outline: none;
}
.header__search-field input::placeholder { color: #999; }
.header__search-btn {
  background: var(--azul); color: var(--blanco);
  font-size: 14px; font-weight: 700; padding: 0 28px;
}
.header__search-btn:hover { background: #093a52; }
.header__search-btn:disabled { background: #93b7cc; cursor: not-allowed; }

/* Call center */
.header__call { flex-shrink: 0; text-align: right; color: var(--blanco); }
.header__call-label { font-size: 20px; font-weight: 700; display: block; opacity: 1; margin-bottom: 2px; }
.header__call-phone {
  display: flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 700; color: var(--blanco);
}
.header__call-phone i {
  transform: scaleX(-1);
}

/* Action icons */
.header__actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header__action {
  color: var(--blanco); font-size: 22px;
  display: flex; align-items: center; gap: 8px; position: relative;
}
.header__action:hover { opacity: 0.8; }
.header__action-text {
  font-size: 16px; line-height: 1.3; font-weight: 400;
  color: var(--blanco); white-space: nowrap;
}
.header__action-sep { width: 1px; height: 26px; background: rgba(255,255,255,0.3); }
.header__badge {
  position: absolute; top: -6px; right: -10px;
  background: #e74c3c; color: var(--blanco);
  font-size: 10px; font-weight: 700;
  min-width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* -- Nav row -- */
.header__nav-row {
  background: var(--celeste);
  padding: 12px 0;
}
.header__nav-inner {
  display: flex; align-items: center; gap: 8px;
}

/* CATEGORIAS BUTTON - pill 44px tall, rx=22 per SVG */
.header__cat-btn {
  display: flex; align-items: center; gap: 8px;
  background: transparent; color: var(--blanco);
  padding: 0 20px; height: 44px;
  font-size: 14px; font-weight: 700;
  border-radius: 22px;
  white-space: nowrap; transition: background 0.3s;
}
.header__cat-btn--active {
  background: var(--verde);
}
.header__cat-btn:hover { filter: brightness(1.05); }
.header__cat-btn i:first-child { font-size: 18px; }
.header__cat-chevron { font-size: 10px; opacity: 0.8; }

.header__nav { display: flex; align-items: center; flex: 1; padding-left: 8px; gap: 4px; }
.header__nav-item { position: relative; display: flex; align-items: center; }
.header__nav-link {
  display: flex; align-items: center; gap: 8px;
  padding: 0 16px; height: 44px; color: var(--blanco);
  font-size: 16px; font-weight: 700; white-space: nowrap;
  border-radius: 22px; transition: background 0.3s;
}
.header__nav-link:hover { background: rgba(255,255,255,0.12); }
.header__nav-ico { font-size: 16px; }
.header__nav-ico-img { width: 24px; height: 24px; display: inline-block; vertical-align: middle; }
.header__nav-dd { font-size: 10px; opacity: 0.6; transition: transform 0.3s; }
.header__nav-link--active .header__nav-dd { transform: rotate(180deg); }
.header__nav-link--active { background: var(--verde); }
.header__nav-link--selected { background: var(--verde); }

/* Nav dropdowns */
.header__dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  min-width: 220px; background: var(--blanco);
  border-radius: 0 0 8px 8px; box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  z-index: 100; padding: 8px 0;
  opacity: 0; transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.header__dropdown--visible { display: block; opacity: 1; transform: translateY(0); }
.header__dropdown a {
  display: block; padding: 10px 20px;
  font-size: 14px; color: var(--texto); font-weight: 500;
}
.header__dropdown a:hover { background: var(--gris); color: var(--celeste); }

.header__nav-end { display: flex; align-items: center; margin-left: auto; gap: 4px; }
.header__nav-link--tracking { font-weight: 700; position: relative; }
.header__nav-link--tracking::after {
  content: ''; position: absolute;
  bottom: 0; left: 16px; right: 16px; height: 3px;
  background: linear-gradient(90deg, #c5d93b, #8DBF3E, #459CD6);
  border-radius: 3px 3px 0 0;
  opacity: 0; transition: opacity 0.3s;
}
.header__nav-link--tracking:hover::after { opacity: 1; }

/* ==================================================================
   4. HERO
   ================================================================== */
.hero { padding: 24px 0 0; }
.hero__grid {
  display: grid;
  grid-template-columns: 720fr 400fr;
  gap: 16px;
}
.hero__main {
  position: relative; border-radius: 10px; overflow: hidden;
  aspect-ratio: 720 / 460;
}
.hero__main-img { width: 100%; height: 100%; object-fit: cover; }
.hero__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.9); color: var(--celeste);
  font-size: 12px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15); z-index: 2;
}
.hero__arrow:hover { background: var(--blanco); }
.hero__arrow--left { left: 16px; }
.hero__arrow--right { right: 16px; }

.hero__side { display: flex; flex-direction: column; gap: 16px; }
.hero__side-card {
  flex: 1; border-radius: 10px; overflow: hidden; position: relative;
}
.hero__side-card--bottom {
  display: flex; align-items: flex-end; justify-content: flex-end; padding: 16px;
}
.hero__side-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
/* Hero side hover overlay */
.hero__side-hover {
  position: absolute; inset: 0; z-index: 2;
  background: rgba(69,156,214,0.82);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.35s ease;
  pointer-events: none;
}
.hero__side-card:hover .hero__side-hover {
  opacity: 1; pointer-events: auto;
}
.hero__side-hover-btn {
  display: inline-flex; align-items: center;
  background: var(--verde); color: var(--blanco);
  font-size: 16px; font-weight: 700;
  padding: 12px 32px; border-radius: 22px;
  transition: transform 0.2s;
}
.hero__side-hover-btn:hover { transform: scale(1.05); filter: brightness(1.05); }

/* ==================================================================
   5. BRANDS  (white strip, height ~118px)
   ================================================================== */
.brands { padding: 24px 0; background: var(--blanco); }
.brands__inner { display: flex; align-items: center; gap: 20px; }
.brands__arrow {
  width: 40px; height: 40px; flex-shrink: 0;
  color: var(--celeste); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.brands__arrow:hover { color: var(--azul); }
.brands__track-wrap {
  flex: 1; overflow: hidden; position: relative;
}
.brands__track {
  display: flex; align-items: center; gap: 0;
  transition: transform 0.5s ease;
  will-change: transform;
}
.brands__item {
  flex: 0 0 140px; height: 70px;
  display: flex; align-items: center; justify-content: center;
  padding: 4px;
}
.brands__item img { max-height: 65px; max-width: 120px; object-fit: contain; }

.brands__dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 16px;
}
.brands__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gris); cursor: pointer; transition: all 0.3s;
}
.brands__dot--active {
  width: 24px; border-radius: 5px; background: var(--celeste);
}

/* ==================================================================
   6. ABOUT  (Quiénes Somos)
   ================================================================== */
.about { padding: 40px 0 56px; }
.about__grid {
  display: grid;
  grid-template-columns: 499fr 589fr;
  gap: 48px; align-items: start;
}
.about__images { position: relative; padding: 24px 0 0 24px; }
.about__bg-square {
  position: absolute; top: 0; left: 0;
  width: 85%; height: 85%;
  background: var(--celeste); border-radius: 12px;
  opacity: 0.12;
}
.about__photo {
  width: 100%; border-radius: 12px;
  aspect-ratio: 483 / 457; object-fit: cover;
}
.about__title {
  font-size: 40px; font-weight: 700;
  color: var(--celeste); line-height: 1.2; margin-bottom: 32px;
}
.about__feature { margin-bottom: 32px; }
.about__feature-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 10px;
}
.about__check {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--verde); color: var(--blanco);
  font-size: 11px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about__feature-title {
  font-size: 18px; font-weight: 700; color: var(--azul); line-height: 1.3;
}
.about__feature-desc {
  font-size: 16px; color: var(--texto); line-height: 1.5; padding-left: 36px;
}
.about__feature-desc strong { font-weight: 600; }
.about__cta {
  display: inline-flex; align-items: center; gap: 16px;
  background: var(--verde); color: var(--blanco);
  font-size: 16px; font-weight: 700;
  padding: 16px 40px; border-radius: 43px;
}
.about__cta:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* ==================================================================
   7. STATS  (blue overlay with bg image, cards with glass effect)
   ================================================================== */
.stats {
  padding: 41px 0; position: relative; overflow: hidden;
  background: var(--celeste);
}
.stats::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(rgba(69,156,214,0.88), rgba(69,156,214,0.88)),
    url('../assets/img/stats/stats-bg.webp') center / cover no-repeat;
}
.stats__inner {
  position: relative; z-index: 1;
  display: flex; justify-content: center; gap: 32px;
}
.stats__card {
  text-align: center; color: var(--blanco);
  width: 312px; padding: 15px 40px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 24px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}
.stats__icon { font-size: 40px; display: block; margin-bottom: 8px; opacity: 0.9; }
.stats__icon-img { width: 40px; height: 40px; margin: 0 auto 8px; display: block; filter: brightness(0) invert(1); }
.stats__number { font-size: 56px; font-weight: 700; display: block; line-height: 1.2; }
.stats__label { font-size: 18px; font-weight: 600; display: block; margin-top: 8px; opacity: 0.95; }

/* ==================================================================
   8. PRODUCTS
   ================================================================== */
.products { padding: 48px 0; }
.products__head {
  display: flex; align-items: baseline;
  justify-content: space-between; margin-bottom: 32px;
}
.products__title {
  font-size: 32px; font-weight: 700;
  color: var(--celeste); font-style: normal;
  line-height: 1.2;
}
.products__more {
  font-size: 16px; font-weight: 600; color: var(--azul);
  display: inline-flex; align-items: center; gap: 12px;
}
.products__more:hover { gap: 12px; }
.products__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* Product Card */
.pcard {
  background: var(--blanco); border: 1px solid var(--gris);
  border-radius: 8px; overflow: hidden; position: relative;
}
.pcard--featured {
  border: 2px solid var(--celeste);
  box-shadow: 0 0 12px rgba(69,156,214,0.32);
}
.pcard:hover {
  border: 2px solid var(--celeste);
  box-shadow: 0 0 12px rgba(69,156,214,0.32);
}

.pcard__img-wrap { position: relative; padding: 5px; }
.pcard__img {
  width: 100%; aspect-ratio: 1; object-fit: contain; border-radius: 4px;
}
.pcard__placeholder { font-size: 64px; color: #ddd; }

.pcard__tags {
  position: absolute; top: 15px; left: 15px;
  display: flex; flex-direction: column; gap: 8px;
}
.pcard__tag {
  background: var(--verde); color: var(--blanco);
  font-size: 14px; font-weight: 600;
  padding: 3px 8px; border-radius: 4px; line-height: 1.5;
}
.pcard__side-actions {
  position: absolute; top: 8px; right: 8px;
  display: flex; flex-direction: column; gap: 6px;
  opacity: 0; transform: translateX(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.pcard:hover .pcard__side-actions,
.pcard__side-actions--has-fav {
  opacity: 1; transform: translateX(0);
}
.pcard__side-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blanco); border: 1px solid var(--gris);
  color: var(--celeste); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: border-color 0.2s, transform 0.2s;
}
.pcard__side-btn:hover { border-color: var(--celeste); transform: scale(1.1); }
.pcard__fav--active { color: #e74c3c; border-color: #e74c3c; }
.pcard__fav--active i { font-weight: 900; }

.pcard__bottom {
  display: flex; align-items: flex-start;
  justify-content: space-between;
  padding: 4px 16px 0; gap: 8px;
}
.pcard__info { flex: 1; }
.pcard__name {
  font-size: 18px; font-weight: 600;
  color: var(--celeste); line-height: 1.3; margin-bottom: 4px;
}
.pcard__price { font-size: 18px; font-weight: 700; color: var(--celeste); }
.pcard__cart {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--celeste); color: var(--blanco);
  font-size: 15px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 4px; cursor: pointer;
  transition: transform 0.2s;
}
.pcard__cart:hover { background: #3a8bc5; transform: scale(1.1); }

/* Quantity pill (replaces cart button on click) */
.pcard__add-qty {
  display: none; align-items: center;
  border: 1px solid var(--celeste); border-radius: 22px;
  height: 44px; padding: 0; width: 100%;
  margin-top: 0;
}
.pcard__add-qty--visible { display: flex; }
.pcard__add-qty .pcard__qty-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--celeste); color: var(--blanco);
  border: none; font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin: 0 5px;
  transition: background 0.2s;
}
.pcard__add-qty .pcard__qty-btn:hover { background: #3a8bc5; }
.pcard__add-qty .pcard__qty-val {
  flex: 1; text-align: center; font-size: 16px;
  font-weight: 700; color: var(--texto);
}

/* When qty is showing, hide cart button and rearrange bottom */
.pcard__bottom--has-qty { flex-direction: column; }
.pcard__bottom--has-qty .pcard__cart { display: none; }

.pcard__stars { padding: 8px 16px 16px; }
.pcard__stars i { font-size: 14px; color: #f5a623; }
.pcard__stars .far { color: var(--gris200); }

/* ==================================================================
   9. OFERTA DE VALOR
   ================================================================== */
.value {
  padding: 40px 0 56px; position: relative; overflow: hidden;
}
/* Decorative leaf shapes on left */
.value__deco-left {
  position: absolute; left: 0; bottom: 0;
  width: 528px; height: 100%; pointer-events: none;
  opacity: 0.04;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 528 860'%3E%3Cellipse cx='48' cy='414' rx='95' ry='87' fill='%230B4460' transform='rotate(-15 48 414)'/%3E%3Cellipse cx='116' cy='512' rx='106' ry='96' fill='%230B4460' transform='rotate(10 116 512)'/%3E%3Cellipse cx='226' cy='421' rx='109' ry='100' fill='%230B4460' transform='rotate(-5 226 421)'/%3E%3Cellipse cx='328' cy='530' rx='85' ry='91' fill='%230B4460' transform='rotate(8 328 530)'/%3E%3Cellipse cx='434' cy='430' rx='84' ry='116' fill='%230B4460' transform='rotate(-12 434 430)'/%3E%3Cellipse cx='493' cy='522' rx='77' ry='100' fill='%230B4460' transform='rotate(5 493 522)'/%3E%3Cellipse cx='57' cy='552' rx='38' ry='53' fill='%230B4460'/%3E%3Cellipse cx='161' cy='456' rx='50' ry='39' fill='%230B4460'/%3E%3Cellipse cx='243' cy='550' rx='50' ry='39' fill='%230B4460'/%3E%3Cellipse cx='360' cy='469' rx='44' ry='52' fill='%230B4460'/%3E%3Cellipse cx='433' cy='562' rx='36' ry='55' fill='%230B4460'/%3E%3Cellipse cx='514' cy='459' rx='46' ry='49' fill='%230B4460'/%3E%3Cellipse cx='59' cy='654' rx='83' ry='119' fill='%230B4460' transform='rotate(-8 59 654)'/%3E%3Cellipse cx='126' cy='770' rx='81' ry='86' fill='%230B4460' transform='rotate(12 126 770)'/%3E%3Cellipse cx='224' cy='643' rx='74' ry='124' fill='%230B4460' transform='rotate(-3 224 643)'/%3E%3Cellipse cx='284' cy='762' rx='86' ry='94' fill='%230B4460' transform='rotate(7 284 762)'/%3E%3Cellipse cx='407' cy='645' rx='98' ry='91' fill='%230B4460' transform='rotate(-10 407 645)'/%3E%3Cellipse cx='498' cy='760' rx='79' ry='96' fill='%230B4460' transform='rotate(4 498 760)'/%3E%3C/svg%3E") no-repeat left bottom / contain;
}

.value__grid {
  display: grid;
  grid-template-columns: 456px 1fr;
  gap: 56px; align-items: start;
  position: relative; z-index: 1;
}
.value__video-inner {
  width: 100%; aspect-ratio: 456 / 420;
  border-radius: 12px; overflow: hidden;
  position: relative;
}
.value__video-img {
  width: 100%; height: 100%; object-fit: cover;
}
.value__video-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.2); border-radius: 12px;
}
.value__play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--celeste); color: var(--blanco);
  font-size: 22px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2); z-index: 1;
}
.value__play:hover { transform: translate(-50%, -50%) scale(1.1); }

.value__title {
  font-size: 40px; font-weight: 700; color: var(--celeste);
  line-height: 1.2; margin-bottom: 16px;
}
.value__desc {
  font-size: 14px; color: var(--texto); line-height: 1.6; margin-bottom: 32px; max-width: 624px;
}
.value__features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.value__feat { display: flex; gap: 16px; align-items: flex-start; }
.value__feat-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(141,191,62,0.2); color: var(--celeste);
  font-size: 24px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.value__feat-svg { width: 30px; height: 30px; }
.value__feat-text h4 {
  font-size: 16px; font-weight: 700; color: var(--azul); margin-bottom: 4px;
}
.value__feat-text p { font-size: 16px; color: var(--texto); line-height: 1.4; }

/* ==================================================================
   10. BLOG
   ================================================================== */
.blog { padding: 48px 0 56px; }
.blog__head { text-align: center; margin-bottom: 40px; }
.blog__title {
  font-size: 40px; font-weight: 700; color: var(--celeste); margin-bottom: 12px;
}
.blog__sub {
  font-size: 16px; color: var(--texto);
  max-width: 556px; margin: 0 auto; line-height: 1.5;
}
.blog__slider { display: flex; align-items: center; gap: 16px; }
.blog__arrow {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--gris); background: var(--blanco);
  color: var(--celeste); font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.blog__arrow:hover {
  background: var(--celeste); color: var(--blanco); border-color: var(--celeste);
}
.blog__track {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; flex: 1;
}

/* Blog Card - horizontal layout */
.bcard {
  background: #F7F7F7;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  display: flex; overflow: hidden;
  min-height: 190px; padding: 8px; gap: 8px;
}
.bcard:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

.bcard__img {
  width: 130px; flex-shrink: 0;
  border-radius: 10px; overflow: hidden;
  position: relative;
}
.bcard__photo {
  width: 100%; height: 100%; object-fit: cover;
}
.bcard__ph {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px; color: rgba(255,255,255,0.5);
}

.bcard__body {
  display: flex; flex-direction: column; padding: 8px; flex: 1;
}
.bcard__tag {
  display: inline-block; align-self: flex-start;
  background: var(--celeste); color: var(--blanco);
  font-size: 14px; font-weight: 600;
  padding: 6px 8px; border-radius: 6px;
  margin-bottom: 12px; line-height: 1.2;
}
.bcard__desc {
  font-size: 16px; font-weight: 600; color: var(--azul);
  line-height: 1.3; flex: 1; margin-bottom: 12px;
  overflow: hidden; display: -webkit-box;
  -webkit-line-clamp: 3; -webkit-box-orient: vertical;
}
.bcard__link {
  font-family: 'Inter', sans-serif; font-size: 16px;
  font-weight: 500; color: var(--celeste);
  display: inline-flex; align-items: center; gap: 4px;
}
.bcard__link:hover { gap: 8px; }

.blog__dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 24px;
}
.blog__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gris); cursor: pointer;
}
.blog__dot--active {
  width: 24px; border-radius: 5px; background: var(--celeste);
}

/* ==================================================================
   11. FOOTER  (bg: #459CD6)
   ================================================================== */
.footer {
  background: var(--celeste); color: var(--blanco); padding: 40px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 381fr 82fr 166fr 153fr;
  gap: 48px; padding-bottom: 32px;
}
.footer__logo { width: 100px; height: 75px; margin-bottom: 16px; object-fit: contain; }
.footer__brand-desc {
  font-family: var(--poppins); font-size: 14px;
  line-height: 1.5; opacity: 0.95; margin-bottom: 16px;
}
.footer__contact-label {
  font-family: var(--poppins); font-size: 14px;
  font-weight: 700; margin-bottom: 6px;
}
.footer__contact-row {
  display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 16px;
}
.footer__contact-row span {
  font-family: var(--poppins); font-size: 14px; font-weight: 500;
}

/* Social icons */
.footer__social { display: flex; gap: 16px; }
.footer__social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--blanco); color: var(--celeste);
  display: flex; align-items: center; justify-content: center;
  padding: 8px;
}
.footer__social a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.footer__social-icon { width: 100%; height: 100%; object-fit: contain; }

/* Footer columns */
.footer__col h4 {
  font-family: var(--poppins); font-size: 16px;
  font-weight: 500; margin-bottom: 20px;
}
.footer__col a {
  display: block; font-family: var(--poppins);
  font-size: 14px; opacity: 0.9; margin-bottom: 12px;
}
.footer__col a:hover { opacity: 1; }

/* Libro de Reclamaciones */
.footer__libro { margin-top: 16px; }
.footer__libro-img {
  width: 120px; height: 78px;
  object-fit: contain; border-radius: 4px;
  background: var(--blanco);
}

/* Bottom bar */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.3);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.footer__bottom p {
  font-family: var(--poppins); font-size: 14px; opacity: 0.9;
}
.footer__pay { display: flex; align-items: center; gap: 4px; }
.footer__pay-card {
  background: var(--blanco); border: 1.3px solid #d9d9d9;
  border-radius: 4px; width: 44px; height: 31px;
  display: flex; align-items: center; justify-content: center;
  padding: 6px 8px;
}
.footer__pay-card img { width: 100%; height: 100%; object-fit: contain; }
.footer__pay-secure {
  background: var(--blanco); border: 1px solid #d9d9d9;
  border-radius: 4px; height: 32px;
  display: flex; align-items: center; gap: 3px;
  padding: 4px 6px; white-space: nowrap;
  color: var(--gris900); font-family: var(--poppins);
}
.footer__pay-lock { width: 11px; height: 11px; flex-shrink: 0; }
.footer__pay-secure span { font-size: 11px; line-height: 1.1; }
.footer__pay-secure strong { font-size: 12px; font-weight: 600; }

/* ==================================================================
   ANIMATIONS
   ================================================================== */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.fade-in--visible { opacity: 1; transform: translateY(0); }

/* ==================================================================
   HAMBURGER BUTTON (mobile only)
   ================================================================== */
.header__hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px; background: none; border: none;
  cursor: pointer; padding: 6px; margin-left: 8px;
}
.header__hamburger span {
  display: block; width: 100%; height: 2.5px;
  background: var(--blanco); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.header__hamburger--open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.header__hamburger--open span:nth-child(2) { opacity: 0; }
.header__hamburger--open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ==================================================================
   MOBILE MENU
   ================================================================== */
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0;
  width: 100%; height: 100%; z-index: 9999;
}
.mobile-menu--open { display: block; }
.mobile-menu__overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5); opacity: 0;
  transition: opacity 0.3s;
}
.mobile-menu--open .mobile-menu__overlay { opacity: 1; }
.mobile-menu__panel {
  position: absolute; top: 0; right: 0;
  width: 85%; max-width: 360px; height: 100%;
  background: var(--blanco); overflow-y: auto;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
  box-shadow: -4px 0 24px rgba(0,0,0,0.15);
}
.mobile-menu--open .mobile-menu__panel { transform: translateX(0); }
.mobile-menu__header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; background: var(--azul); color: var(--blanco);
}
.mobile-menu__title { font-size: 18px; font-weight: 700; }
.mobile-menu__close {
  background: none; border: none; color: var(--blanco);
  font-size: 20px; cursor: pointer; padding: 4px;
}
.mobile-menu__list {
  list-style: none; padding: 0; margin: 0;
}
.mobile-menu__item {}
.mobile-menu__link {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px; font-size: 15px; font-weight: 600;
  color: var(--texto); border-bottom: 1px solid var(--gris);
  transition: background 0.2s;
}
.mobile-menu__link:hover { background: #f5f5f5; }
.mobile-menu__link span { display: flex; align-items: center; gap: 10px; }
.mobile-menu__link i { font-size: 14px; color: var(--azul); }
.mobile-menu__ico { width: 22px; height: 22px; }
.mobile-menu__arrow {
  font-size: 12px; color: #999;
  transition: transform 0.3s;
}
.mobile-menu__item--open > .mobile-menu__link .mobile-menu__arrow {
  transform: rotate(180deg);
}
.mobile-menu__item--open > .mobile-menu__link {
  background: var(--azul); color: var(--blanco);
}
.mobile-menu__item--open > .mobile-menu__link i { color: var(--blanco); }
.mobile-menu__item--open > .mobile-menu__link .mobile-menu__arrow { color: var(--blanco); }
.mobile-menu__sub {
  list-style: none; padding: 0; margin: 0;
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.22,1,0.36,1);
  background: #f7f9fb;
}
.mobile-menu__item--open > .mobile-menu__sub { max-height: 400px; }
.mobile-menu__sub li a {
  display: block; padding: 12px 20px 12px 52px;
  font-size: 14px; color: var(--texto); font-weight: 500;
  border-bottom: 1px solid #eee; transition: background 0.2s, color 0.2s;
}
.mobile-menu__sub li a:hover { background: #eaf3fc; color: var(--celeste); }
.mobile-menu__divider {
  height: 1px; background: var(--gris); margin: 8px 0;
}

/* ==================================================================
   MINICART
   ================================================================== */
.minicart {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%; z-index: 10000;
  pointer-events: none; visibility: hidden;
}
.minicart--open { pointer-events: auto; visibility: visible; }
.minicart__overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.45); opacity: 0;
  transition: opacity 0.35s;
}
.minicart--open .minicart__overlay { opacity: 1; }
.minicart__panel {
  position: absolute; top: 0; right: 0;
  width: 480px; max-width: 90vw; height: 100%;
  background: var(--blanco); display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  box-shadow: -4px 0 24px rgba(0,0,0,0.12);
}
.minicart--open .minicart__panel { transform: translateX(0); }

.minicart__header { padding: 28px 32px 20px; }
.minicart__close {
  background: none; border: none; font-size: 22px;
  color: var(--celeste); cursor: pointer; padding: 0;
  margin-bottom: 12px; display: block;
}
.minicart__title {
  font-size: 28px; font-weight: 700; color: var(--texto);
  font-family: var(--font);
}

.minicart__items {
  flex: 1; overflow-y: auto; padding: 0 32px;
}
.minicart__item {
  display: flex; gap: 16px; padding: 20px 0;
  border-bottom: 1px solid #e6e6e6;
}
.minicart__item-img {
  width: 88px; height: 88px; flex-shrink: 0;
  border-radius: 8px; overflow: hidden; background: #f5f5f5;
}
.minicart__item-img img { width: 100%; height: 100%; object-fit: cover; }
.minicart__item-info { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.minicart__item-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.minicart__item-name {
  font-size: 15px; font-weight: 600; color: var(--texto);
  line-height: 1.3; margin: 0;
}
.minicart__item-delete {
  background: none; border: none; color: #a4a4a4;
  font-size: 16px; cursor: pointer; padding: 2px;
  transition: color 0.2s;
}
.minicart__item-delete:hover { color: #e74c3c; }

.minicart__item-bottom { display: flex; align-items: center; gap: 16px; margin-top: 12px; }
.minicart__qty {
  display: flex; align-items: center;
  border: 1px solid #e6e6e6; border-radius: 8px; overflow: hidden;
}
.minicart__qty-btn {
  width: 36px; height: 36px; background: none; border: none;
  font-size: 18px; color: var(--celeste); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.minicart__qty-btn:hover { background: #f0f7fc; }
.minicart__qty-val {
  width: 40px; text-align: center; font-size: 16px;
  font-weight: 700; color: var(--texto);
}

.minicart__item-prices { display: flex; align-items: baseline; gap: 8px; }
.minicart__item-price { font-size: 16px; font-weight: 700; color: var(--celeste); }
.minicart__item-old {
  font-size: 13px; color: #a5a5a5;
  text-decoration: line-through;
}

.minicart__footer {
  padding: 24px 32px 32px;
  background: var(--blanco);
  box-shadow: 0 -9px 30px rgba(0,0,0,0.14);
}
.minicart__summary { margin-bottom: 20px; }
.minicart__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0; font-size: 14px; color: var(--texto);
}
.minicart__row--sub {
  font-size: 18px; font-weight: 700; padding-top: 10px;
  border-top: 1px solid #e6e6e6; margin-top: 6px;
}
.minicart__row-val { font-weight: 700; }
.minicart__row-val--discount { color: var(--verde); }

.minicart__checkout {
  width: 100%; padding: 14px; border: none; border-radius: 5px;
  background: var(--celeste); color: var(--blanco);
  font-size: 16px; font-weight: 700; font-family: var(--font);
  cursor: pointer; transition: background 0.2s;
}
.minicart__checkout:hover { background: #3a8ac4; }

/* ==================================================================
   RESPONSIVE
   ================================================================== */
@media (max-width: 1200px) {
  .container { padding: 0 40px; }
  .hero__grid { grid-template-columns: 1fr 1fr; }
  .value__grid { grid-template-columns: 1fr 1fr; }
  .about__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .blog__track { grid-template-columns: repeat(2, 1fr); }
  .value__features { grid-template-columns: 1fr; }
  .stats__card { width: 240px; padding: 15px 24px; }
  .stats__number { font-size: 42px; }
  .about__title, .value__title, .blog__title { font-size: 32px; }
  .header__nav-link { font-size: 14px; padding: 0 10px; }
}
@media (max-width: 768px) {
  .pre-header { display: none; }
  .header__nav-row { display: none; }
  .header__call { display: none; }
  .header__hamburger { display: flex; }
  .header__top-inner { flex-wrap: wrap; gap: 12px; }
  .header__search { order: 3; max-width: 100%; flex-basis: 100%; }
  .header__logo-wrap { width: 72px; height: 72px; }
  .header__logo-img { width: 52px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__side { flex-direction: row; }
  .hero__side-card { min-height: 180px; }
  .about__grid { grid-template-columns: 1fr; }
  .stats__inner { flex-direction: column; gap: 16px; align-items: center; }
  .stats__card { width: 100%; max-width: 360px; }
  .value__grid { grid-template-columns: 1fr; }
  .blog__track { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .blog__arrow { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__col--brand { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .promo-bar { padding: 8px 16px; }
  .promo-bar__close { right: 16px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__side { flex-direction: column; }
  .products__grid { grid-template-columns: 1fr; }
  .about__title, .value__title, .blog__title { font-size: 28px; }
  .stats__number { font-size: 36px; }
  .footer__grid { grid-template-columns: 1fr; }
  .bcard { flex-direction: column; }
  .bcard__img { width: 100%; height: 160px; }
}
