/* =========================================================================
   Pegui — secciones / widgets Elementor
   1a = catálogo limpio   ·   1b = bloques de color

   MOBILE-FIRST: los estilos base son los del móvil.
     min-width 768   → tableta
     min-width 1025  → escritorio (aquí se recupera la maqueta de 1280 px)
   Ningún widget usa grid-auto-flow: column. Elementor emite sus reglas de
   escritorio SIN media query y con mayor especificidad, así que mezclar
   columnas explícitas con auto-flow provocaba tarjetas superpuestas en móvil.

   IMÁGENES: elementor/frontend.min.css declara
       .elementor img { height: auto; max-width: 100%; border-radius: 0 }
   con la misma especificidad (0,1,1) que `.pg-xxx__media img` y se carga
   después del tema, así que ganaba y las fotos salían a tamaño natural y con
   las esquinas cuadradas. Por eso TODA regla que fije alto, ajuste o radio de
   una imagen lleva el selector de su sección delante (0,2,1) y gana siempre,
   independientemente del orden de carga.
   ========================================================================= */

/* Contención: si una imagen se sale de su marco, el marco la recorta. */
.pg-hero-split__media,
.pg-hero-bold__media,
.pg-about__media,
.pg-contact-split__media,
.pg-product-card__media,
.pg-division-card { overflow: hidden; }

/* -------------------------------------------------------------------------
   HERO DIVIDIDO (1a)
   ------------------------------------------------------------------------- */

.pg-hero-split { display: grid; grid-template-columns: 1fr; }

/* En móvil la foto va primero, como en la maqueta. */
.pg-hero-split__media { order: 1; position: relative; }
.pg-hero-split__text { order: 2; }

.pg-hero-split .pg-hero-split__media img { width: 100%; height: 220px; object-fit: cover; }

.pg-hero-split__text {
  background: var(--pg-surface);
  padding: 26px var(--pg-gutter) 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.pg-hero-split__text .pg-eyebrow { margin-bottom: 0; }
.pg-hero-split__title {
  margin: 0;
  font: 800 clamp(30px, 7vw, 54px)/1.06 var(--pg-font-head);
  letter-spacing: -0.02em;
  color: var(--pg-ink);
}
.pg-hero-split__desc { margin: 0; font-size: 15px; line-height: 1.55; color: var(--pg-text); max-width: 480px; }

.pg-hero-split__actions { display: grid; gap: 10px; margin-top: 4px; }

.pg-hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--pg-muted-soft);
}
.pg-hero-stats__value {
  font-family: var(--pg-font-head);
  font-weight: 700;
  font-size: 19px;
  color: var(--pg-ink);
  margin-right: 6px;
}

@media (min-width: 768px) {
  .pg-hero-split .pg-hero-split__media img { height: 300px; }
  .pg-hero-split__text { padding-block: 40px 44px; gap: 18px; }
  .pg-hero-split__desc { font-size: 16.5px; }
  .pg-hero-split__actions { grid-auto-flow: column; justify-content: start; gap: 12px; }
  .pg-hero-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 20px; }
}

@media (min-width: 1025px) {
  .pg-hero-split { grid-template-columns: 1fr 1fr; min-height: 560px; }
  .pg-hero-split__media { order: 0; }
  .pg-hero-split__text { order: 0; padding: 56px var(--pg-gutter); gap: 20px; }
  .pg-hero-split .pg-hero-split__media img { height: 100%; }
  .pg-hero-split__desc { font-size: 17px; }
  .pg-hero-stats { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 22px; }
  .pg-hero-stats__item { max-width: 190px; }
  .pg-hero-stats__value { font-size: 20px; margin-right: 4px; }
  /* Foto a la izquierda. */
  .pg-hero-split--flip .pg-hero-split__media { order: 0; }
  .pg-hero-split--flip .pg-hero-split__text { order: 1; }
}

/* -------------------------------------------------------------------------
   HERO BLOQUE AZUL (1b)
   ------------------------------------------------------------------------- */

.pg-hero-bold { background: var(--pg-blue); color: #fff; }
.pg-hero-bold__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  padding-top: 26px;
}
.pg-hero-bold__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border-radius: var(--pg-radius-pill);
  padding: 6px 12px 6px 6px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
}
.pg-hero-bold__badge-tag {
  background: var(--pg-cyan);
  border-radius: var(--pg-radius-pill);
  padding: 3px 9px;
  font-size: 10.5px;
}
.pg-hero-bold__title {
  margin: 0 0 14px;
  font: 800 clamp(36px, 10vw, 76px)/0.98 var(--pg-font-head);
  letter-spacing: -0.035em;
  color: #fff;
}
.pg-hero-bold__title em { font-style: normal; color: var(--pg-sky); }
.pg-hero-bold__desc {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--pg-lavender);
  max-width: 460px;
}
.pg-hero-bold__actions { display: grid; gap: 8px; }

.pg-hero-bold__media { position: relative; }
.pg-hero-bold .pg-hero-bold__media > img { width: 100%; height: 200px; object-fit: cover; }

.pg-hero-bold__card {
  background: #fff;
  color: var(--pg-ink);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 14px var(--pg-gutter);
}
.pg-hero-bold .pg-hero-bold__card img { height: 56px; width: auto; flex: none; }
.pg-hero-bold__card-title { font: 700 14.5px var(--pg-font-head); margin: 2px 0; }
.pg-hero-bold__card-link { font-size: 12px; color: var(--pg-blue); font-weight: 700; }

@media (min-width: 768px) {
  .pg-hero-bold__inner { padding-top: 40px; gap: 28px; }
  .pg-hero-bold__title { margin-bottom: 18px; }
  .pg-hero-bold__desc { font-size: 17px; margin-bottom: 26px; }
  .pg-hero-bold__actions { grid-auto-flow: column; justify-content: start; gap: 12px; }
  .pg-hero-bold .pg-hero-bold__media > img { height: 320px; border-radius: 16px 16px 0 0; }
  .pg-hero-bold__card {
    position: absolute;
    left: 12px;
    bottom: 12px;
    margin: 0;
    max-width: 320px;
    box-shadow: 0 12px 40px rgba(0,0,0,.25);
    padding: 16px 20px;
  }
  .pg-hero-bold .pg-hero-bold__card img { height: 64px; }
  .pg-hero-bold__card-title { font-size: 15px; }
}

@media (min-width: 1025px) {
  .pg-hero-bold__inner {
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: end;
    padding-top: 56px;
  }
  .pg-hero-bold__text { padding-bottom: 72px; }
  .pg-hero-bold__badge { font-size: 13px; padding: 6px 14px 6px 8px; margin-bottom: 26px; }
  .pg-hero-bold__badge-tag { font-size: 11px; }
  .pg-hero-bold__title { margin-bottom: 22px; }
  .pg-hero-bold__desc { font-size: 18px; line-height: 1.55; margin-bottom: 30px; }
  .pg-hero-bold__actions .pg-btn { min-height: 54px; font-weight: 800; }
  .pg-hero-bold__media { height: 460px; }
  .pg-hero-bold .pg-hero-bold__media > img { height: 100%; }
  .pg-hero-bold__card { left: -28px; bottom: 40px; }
}

/* -------------------------------------------------------------------------
   TARJETAS DE DIVISIÓN (1a)
   ------------------------------------------------------------------------- */

.pg-divisions__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.pg-division-card {
  border: 1px solid var(--pg-border);
  border-radius: var(--pg-radius);
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: box-shadow .2s ease, transform .2s ease;
}
.pg-division-card:hover { box-shadow: 0 14px 34px rgba(15,15,15,.10); transform: translateY(-2px); }
.pg-divisions__grid .pg-division-card img { width: 100%; height: 110px; object-fit: cover; }
.pg-division-card__body { padding: 12px 14px 16px; }
.pg-division-card__title { font: 700 14.5px/1.2 var(--pg-font-head); margin-bottom: 5px; color: var(--pg-ink); }
.pg-division-card__desc { font-size: 12.5px; line-height: 1.45; color: var(--pg-muted); }

@media (min-width: 768px) {
  .pg-divisions__grid { gap: 20px; }
  .pg-divisions__grid .pg-division-card img { height: 170px; }
  .pg-division-card__body { padding: 16px 18px 20px; }
  .pg-division-card__title { font-size: 17px; margin-bottom: 6px; }
  .pg-division-card__desc { font-size: 13.5px; line-height: 1.5; }
}

@media (min-width: 1025px) {
  .pg-divisions__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .pg-divisions__grid .pg-division-card img { height: 190px; }
  .pg-division-card__body { padding: 18px 20px 22px; }
  .pg-division-card__title { font-size: 18px; }
}

/* -------------------------------------------------------------------------
   BLOQUES DE DIVISIÓN A COLOR (1b)
   ------------------------------------------------------------------------- */

.pg-division-blocks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pg-division-block {
  padding: 20px 16px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
  transition: filter .2s ease;
}
.pg-division-block:hover { filter: brightness(1.06); }
.pg-division-block__num { font-size: 11px; font-weight: 700; letter-spacing: .14em; }
.pg-division-block__title { font: 700 16px/1.15 var(--pg-font-head); }
.pg-division-block__desc { display: none; font-size: 13.5px; line-height: 1.5; }

.pg-division-block--ink { background: var(--pg-ink); color: #fff; }
.pg-division-block--ink .pg-division-block__num { color: var(--pg-sky); }
.pg-division-block--ink .pg-division-block__desc { color: var(--pg-on-dark); }

.pg-division-block--cyan { background: var(--pg-cyan); color: #fff; }
.pg-division-block--cyan .pg-division-block__num,
.pg-division-block--cyan .pg-division-block__desc { color: var(--pg-sky-soft); }

.pg-division-block--blue { background: var(--pg-blue); color: #fff; }
.pg-division-block--blue .pg-division-block__num { color: var(--pg-sky); }
.pg-division-block--blue .pg-division-block__desc { color: var(--pg-lavender); }

.pg-division-block--soft { background: var(--pg-surface-alt); color: var(--pg-ink); }
.pg-division-block--soft .pg-division-block__num { color: var(--pg-cyan); }
.pg-division-block--soft .pg-division-block__desc { color: var(--pg-muted); }

.pg-division-block--white { background: #fff; color: var(--pg-ink); border-bottom: 1px solid var(--pg-border); }
.pg-division-block--white .pg-division-block__num { color: var(--pg-cyan); }
.pg-division-block--white .pg-division-block__desc { color: var(--pg-muted); }

@media (min-width: 768px) {
  .pg-division-block { padding: 28px 24px; min-height: 170px; gap: 18px; }
  .pg-division-block__num { font-size: 12px; }
  .pg-division-block__title { font: 700 20px/1.1 var(--pg-font-head); margin-bottom: 8px; }
  .pg-division-block__desc { display: block; }
}

@media (min-width: 1025px) {
  .pg-division-blocks { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .pg-division-block { padding: 36px 32px; min-height: 190px; gap: 24px; }
  .pg-division-block__title { font-size: 24px; }
  .pg-division-block--white { border-bottom: 0; border-right: 1px solid var(--pg-border); }
}

/* -------------------------------------------------------------------------
   REJILLA DE PRODUCTOS (1a)
   Móvil: una tarjeta por fila, horizontal y compacta.
   ------------------------------------------------------------------------- */

.pg-products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.pg-product-card {
  border: 1px solid var(--pg-border);
  border-radius: var(--pg-radius);
  padding: 14px;
  background: #fff;
  min-width: 0;
  /* Tarjeta horizontal: envase a la izquierda, texto a la derecha. */
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  grid-template-areas:
    'media body'
    'foot  foot';
  align-items: center;
  gap: 12px;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.pg-product-card:hover { box-shadow: 0 14px 34px rgba(15,15,15,.09); border-color: var(--pg-border-strong); }

.pg-product-card__media {
  grid-area: media;
  background: var(--pg-surface);
  border-radius: 8px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}
.pg-product-card .pg-product-card__media img { max-height: 84px; max-width: 100%; width: auto; object-fit: contain; }

.pg-product-card__body {
  grid-area: body;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}
.pg-product-card__title {
  font: 700 15px/1.25 var(--pg-font-head);
  color: var(--pg-ink);
  margin: 0;
}
.pg-product-card__desc {
  font-size: 12.5px;
  color: var(--pg-muted);
  line-height: 1.45;
  margin: 0;
  display: none;       /* en móvil la descripción se omite: prima el escaneo */
}
.pg-product-card__foot {
  grid-area: foot;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  padding-top: 4px;
}
.pg-product-card__ficha { color: var(--pg-blue); }
.pg-product-card__cta {
  border: 1.5px solid var(--pg-ink);
  border-radius: 6px;
  padding: 9px 14px;
  color: var(--pg-ink);
}
.pg-product-card__cta:hover { background: var(--pg-ink); color: #fff; }
.pg-product-card.is-hidden { display: none; }

/* Carrusel opcional en móvil (flex, nunca grid auto-flow). */
.pg-products__grid--carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  margin-inline: calc(var(--pg-gutter) * -1);
  padding-inline: var(--pg-gutter);
  scrollbar-width: none;
}
.pg-products__grid--carousel::-webkit-scrollbar { display: none; }
.pg-products__grid--carousel > .pg-product-card {
  flex: 0 0 74vw;
  max-width: 260px;
  scroll-snap-align: start;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas: 'media' 'body' 'foot';
  align-items: stretch;
}
.pg-products__grid--carousel .pg-product-card__media { height: 140px; }
.pg-products__grid--carousel .pg-product-card .pg-product-card__media img { max-height: 124px; }

@media (min-width: 768px) {
  .pg-products__grid,
  .pg-products__grid--carousel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    overflow: visible;
    margin-inline: 0;
    padding-inline: 0;
  }

  /* A partir de tableta la tarjeta vuelve a ser vertical. */
  .pg-product-card,
  .pg-products__grid--carousel > .pg-product-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 18px;
    max-width: none;
  }
  .pg-product-card__media { height: 180px; padding: 10px; }
  .pg-product-card .pg-product-card__media img { max-height: 160px; max-width: 80%; }
  .pg-product-card__body { gap: 8px; }
  .pg-product-card__title { font-size: 16.5px; }
  .pg-product-card__desc { display: block; font-size: 13px; line-height: 1.5; }
  .pg-product-card__foot { margin-top: auto; font-size: 13px; padding-top: 0; }
  .pg-product-card__cta { padding: 7px 12px; }
}

@media (min-width: 1025px) {
  .pg-products__grid,
  .pg-products__grid--carousel {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }
  .pg-product-card,
  .pg-products__grid--carousel > .pg-product-card { padding: 20px; }
  .pg-product-card__media { height: 200px; }
  .pg-product-card .pg-product-card__media img { max-height: 180px; }
  .pg-product-card__title { font-size: 17px; }
}

/* -------------------------------------------------------------------------
   ESCAPARATE DE MARCAS (1b)
   ------------------------------------------------------------------------- */

.pg-showcase__inner { display: grid; grid-template-columns: 1fr; gap: 22px; }
.pg-showcase__intro h2 {
  margin: 0 0 12px;
  font: 800 clamp(24px, 6vw, 40px)/1.05 var(--pg-font-head);
  letter-spacing: -0.025em;
}
.pg-showcase__intro p { margin: 0 0 16px; font-size: 14.5px; line-height: 1.55; color: var(--pg-text); }

.pg-showcase__cards { display: grid; grid-template-columns: 1fr; gap: 10px; }

.pg-showcase-card {
  border-radius: 12px;
  padding: 16px;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.pg-showcase__cards .pg-showcase-card img { height: 72px; width: auto; object-fit: contain; flex: none; }
.pg-showcase-card__body { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 0; }
.pg-showcase-card__kicker { font-size: 10.5px; font-weight: 700; letter-spacing: .12em; }
.pg-showcase-card__title { font: 700 15px/1.2 var(--pg-font-head); color: #fff; margin: 0; }
.pg-showcase-card__actions { display: flex; gap: 8px; font-size: 12px; font-weight: 800; flex-wrap: wrap; margin-top: 4px; }
.pg-showcase-card__actions .pg-pill { border-radius: 6px; padding: 8px 11px; display: inline-flex; align-items: center; }
.pg-showcase-card__actions .pg-pill--solid { background: #fff; }
.pg-showcase-card__actions .pg-pill--ghost { border: 1.5px solid rgba(255,255,255,.5); color: #fff; }
.pg-showcase-card__actions .pg-pill--ghost:hover { background: rgba(255,255,255,.15); color: #fff; }

.pg-showcase-card--blue { background: var(--pg-blue); }
.pg-showcase-card--blue .pg-showcase-card__kicker { color: var(--pg-sky); }
.pg-showcase-card--blue .pg-pill--solid { color: var(--pg-blue); }

.pg-showcase-card--cyan { background: var(--pg-cyan); }
.pg-showcase-card--cyan .pg-showcase-card__kicker { color: var(--pg-sky-soft); }
.pg-showcase-card--cyan .pg-pill--solid { color: var(--pg-cyan); }

.pg-showcase-card--ink { background: var(--pg-ink); }
.pg-showcase-card--ink .pg-showcase-card__kicker { color: var(--pg-sky); }
.pg-showcase-card--ink .pg-pill--solid { color: var(--pg-ink); }

.pg-showcase__banner {
  background: var(--pg-surface-alt);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.pg-showcase .pg-showcase__banner img { height: 64px; width: auto; flex: none; }
.pg-showcase__banner-body { flex: 1; min-width: 180px; }
.pg-showcase__banner-title { font: 700 16px/1.2 var(--pg-font-head); margin: 4px 0; }
.pg-showcase__banner-desc { font-size: 13px; color: var(--pg-muted); }

@media (min-width: 768px) {
  .pg-showcase__inner { gap: 28px; }
  .pg-showcase__intro p { font-size: 15.5px; line-height: 1.6; margin-bottom: 22px; }
  .pg-showcase__cards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .pg-showcase-card {
    flex-direction: column;
    align-items: stretch;
    border-radius: var(--pg-radius-lg);
    padding: 22px;
    gap: 10px;
    min-height: 300px;
  }
  .pg-showcase__cards .pg-showcase-card img { height: 130px; align-self: center; }
  .pg-showcase-card__body { gap: 10px; }
  .pg-showcase-card__kicker { font-size: 11px; }
  .pg-showcase-card__title { font-size: 18px; }
  .pg-showcase-card__actions { margin-top: auto; font-size: 12.5px; }
  .pg-showcase-card__actions .pg-pill { padding: 9px 12px; }
  .pg-showcase__banner { grid-column: 1 / -1; border-radius: var(--pg-radius-lg); padding: 22px 26px; gap: 24px; }
  .pg-showcase .pg-showcase__banner img { height: 96px; }
  .pg-showcase__banner-body { min-width: 220px; }
  .pg-showcase__banner-title { font-size: 20px; }
  .pg-showcase__banner-desc { font-size: 13.5px; }
}

@media (min-width: 1025px) {
  .pg-showcase__inner { grid-template-columns: 1fr 2fr; gap: 48px; align-items: start; }
  .pg-showcase__intro { position: sticky; top: 24px; }
  .pg-showcase__intro h2 { margin-bottom: 16px; }
  .pg-showcase__cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pg-showcase-card { min-height: 330px; }
  .pg-showcase__cards .pg-showcase-card img { height: 150px; }
}

/* -------------------------------------------------------------------------
   TIRA DE MARCAS
   ------------------------------------------------------------------------- */

.pg-brands {
  background: var(--pg-surface);
  border-top: 1px solid var(--pg-border);
  border-bottom: 1px solid var(--pg-border);
  padding-block: 24px;
}
.pg-brands__inner { display: flex; flex-direction: column; gap: 16px; }
.pg-brands__label { font-size: 13px; color: var(--pg-muted); line-height: 1.5; }
.pg-brands__label b { color: var(--pg-ink); }
.pg-brands__logos {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.pg-brands__logos a,
.pg-brands__logos span { display: inline-flex; align-items: center; }
.pg-brands .pg-brands__logos img {
  height: 30px; width: auto;
  filter: grayscale(1); opacity: .75;
  transition: filter .2s ease, opacity .2s ease;
}
.pg-brands .pg-brands__logos img:hover { filter: none; opacity: 1; }

@media (min-width: 768px) {
  .pg-brands { padding-block: 32px; }
  .pg-brands__inner { flex-direction: row; align-items: center; gap: 32px; flex-wrap: wrap; }
  .pg-brands__label { max-width: 220px; }
  .pg-brands__logos { flex: 1; justify-content: space-around; gap: 36px; }
  .pg-brands .pg-brands__logos img { height: 36px; }
}

@media (min-width: 1025px) {
  .pg-brands { padding-block: 40px; }
  .pg-brands__inner { gap: 48px; }
  .pg-brands__logos { gap: 56px; }
  .pg-brands .pg-brands__logos img { height: 40px; }
}

/* -------------------------------------------------------------------------
   NOSOTROS (1a)
   ------------------------------------------------------------------------- */

.pg-about__inner { display: grid; grid-template-columns: 1fr; gap: 24px; }
.pg-about__media { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pg-about .pg-about__media img { width: 100%; height: 160px; object-fit: cover; border-radius: var(--pg-radius); }
.pg-about__body h2 {
  margin: 0 0 14px;
  font: 700 clamp(24px, 5.4vw, 36px)/1.1 var(--pg-font-head);
  letter-spacing: -0.01em;
}
.pg-about__body p { margin: 0 0 18px; font-size: 15px; line-height: 1.6; color: var(--pg-text); }

@media (min-width: 768px) {
  .pg-about__inner { gap: 32px; }
  .pg-about__media { gap: 16px; }
  .pg-about .pg-about__media img { height: 240px; }
  .pg-about .pg-about__media img:nth-child(2) { margin-top: 24px; }
  .pg-about__body p { font-size: 16px; margin-bottom: 24px; }
}

@media (min-width: 1025px) {
  .pg-about__inner { grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
  .pg-about .pg-about__media img { height: 320px; }
  .pg-about .pg-about__media img:nth-child(2) { margin-top: 40px; }
  .pg-about__body h2 { margin-bottom: 18px; }
}

/* -------------------------------------------------------------------------
   INDICADORES (1b)
   ------------------------------------------------------------------------- */

.pg-stats { background: var(--pg-ink); color: #fff; padding-block: 28px; }
.pg-stats__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.pg-stats__value {
  font: 800 clamp(30px, 8vw, 72px)/1 var(--pg-font-head);
  letter-spacing: -0.03em;
  color: var(--pg-sky);
}
.pg-stats__label { font-size: 12px; color: var(--pg-on-dark); margin-top: 6px; line-height: 1.4; }

@media (min-width: 768px) {
  .pg-stats { padding-block: 48px; }
  .pg-stats__grid { gap: 28px; }
  .pg-stats__label { font-size: 14px; margin-top: 10px; line-height: 1.5; }
}

@media (min-width: 1025px) {
  .pg-stats { padding-block: 72px; }
  .pg-stats__grid { gap: 40px; }
  .pg-stats__label { font-size: 15px; }
}

/* -------------------------------------------------------------------------
   BANDA CTA (1a)
   ------------------------------------------------------------------------- */

.pg-cta-band { padding-bottom: var(--pg-section-y); }
.pg-cta-band__box {
  background: var(--pg-blue);
  color: #fff;
  border-radius: 12px;
  padding: 24px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.pg-cta-band__box h2 {
  margin: 0 0 10px;
  font: 700 clamp(22px, 5.2vw, 34px)/1.12 var(--pg-font-head);
  letter-spacing: -0.01em;
  color: #fff;
}
.pg-cta-band__box p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--pg-lavender); }

.pg-cta-band__actions { display: grid; grid-template-columns: 1fr; gap: 10px; }
.pg-cta-tile {
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-weight: 800;
  color: var(--pg-ink);
  min-height: 56px;
  justify-content: center;
  transition: transform .18s ease, filter .18s ease;
}
.pg-cta-tile:hover { transform: translateY(-2px); color: var(--pg-ink); }
.pg-cta-tile__label { font-size: 11.5px; opacity: .7; font-weight: 700; }
.pg-cta-tile__value { font-size: 16px; }
.pg-cta-tile--whatsapp { background: var(--pg-whatsapp); }
.pg-cta-tile--light { background: #fff; }
.pg-cta-tile--wide {
  border: 1.5px solid rgba(255,255,255,.5);
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  align-items: center;
  padding: 14px 18px;
}
.pg-cta-tile--wide:hover { background: rgba(255,255,255,.12); color: #fff; }

@media (min-width: 768px) {
  .pg-cta-band__box { padding: 32px 28px; border-radius: var(--pg-radius-lg); }
  .pg-cta-band__box p { font-size: 15.5px; }
  .pg-cta-band__actions { grid-template-columns: 1fr 1fr; gap: 12px; }
  .pg-cta-tile { padding: 16px 18px; }
  .pg-cta-tile__label { font-size: 12px; }
  .pg-cta-tile__value { font-size: 17px; }
  .pg-cta-tile--wide { grid-column: 1 / -1; }
}

@media (min-width: 1025px) {
  .pg-cta-band__box {
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 48px 56px;
  }
  .pg-cta-band__box h2 { margin-bottom: 12px; }
  .pg-cta-band__box p { font-size: 16px; }
}

/* -------------------------------------------------------------------------
   CONTACTO DIVIDIDO (1b)
   ------------------------------------------------------------------------- */

.pg-contact-split__inner { display: grid; grid-template-columns: 1fr; gap: 20px; }
.pg-contact-split .pg-contact-split__media img { width: 100%; height: 200px; object-fit: cover; border-radius: 12px; }
.pg-contact-split__body h2 {
  margin: 0 0 12px;
  font: 800 clamp(24px, 6vw, 40px)/1.06 var(--pg-font-head);
  letter-spacing: -0.025em;
}
.pg-contact-split__body p { margin: 0 0 20px; font-size: 15px; line-height: 1.6; color: var(--pg-text); }
.pg-contact-split__actions { display: flex; flex-direction: column; gap: 10px; }
.pg-contact-split__phones { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

@media (min-width: 768px) {
  .pg-contact-split__inner { gap: 32px; }
  .pg-contact-split .pg-contact-split__media img { height: 300px; border-radius: 16px; }
  .pg-contact-split__body p { font-size: 16px; margin-bottom: 26px; }
  .pg-contact-split__actions { max-width: 420px; }
  .pg-contact-split__actions .pg-btn { min-height: 52px; font-weight: 800; }
  .pg-contact-split__actions .pg-btn--whatsapp { min-height: 56px; font-size: 16px; }
}

@media (min-width: 1025px) {
  .pg-contact-split__inner { grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
  .pg-contact-split .pg-contact-split__media img { height: 380px; }
  .pg-contact-split__body h2 { margin-bottom: 16px; }
}

/* -------------------------------------------------------------------------
   SEGMENTOS DE CLIENTE (compartido)
   ------------------------------------------------------------------------- */

.pg-segments {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--pg-border);
  border-bottom: 1px solid var(--pg-border);
}
.pg-segment { padding: 16px 0; font-size: 13.5px; border-bottom: 1px solid var(--pg-border); }
.pg-segment:last-child { border-bottom: 0; }
.pg-segment__kicker { font-size: 10.5px; font-weight: 700; letter-spacing: .14em; color: var(--pg-cyan); margin-bottom: 4px; }
.pg-segment__title { font-weight: 700; color: var(--pg-ink); }
.pg-segment__desc { color: var(--pg-muted); }

@media (min-width: 768px) {
  .pg-segments { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pg-segment { padding: 20px 22px; border-right: 1px solid var(--pg-border); }
  .pg-segment__kicker { font-size: 11px; margin-bottom: 6px; }
}

@media (min-width: 1025px) {
  .pg-segments { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .pg-segment { padding: 22px 24px; border-bottom: 0; }
  .pg-segment:last-child { border-right: 0; }
}

/* -------------------------------------------------------------------------
   Estado vacío (solo visible en el editor)
   ------------------------------------------------------------------------- */

.pg-empty {
  border: 1px dashed var(--pg-border-strong);
  border-radius: var(--pg-radius);
  padding: 24px;
  text-align: center;
  color: var(--pg-muted);
  font-size: 14px;
}
