/* ============================================
   BOGOPACK THEME - main.css
   Organizado por sección.
   ============================================ */

/* ---------- VARIABLES DE MARCA ---------- */
:root {
  --bp-color-negro: #222221;
  --bp-color-crema: #FBF9EF;        /* fondo general */
  --bp-color-marca: #C9494D;        /* rojo principal */
  --bp-color-marca-hover: #b23e42;
  --bp-color-amarillo: #F4F0A4;     /* botones, CTA, nav activo */
  --bp-color-amarillo-hover: #eae87a;
  --bp-color-texto: #222221;

  --bp-font-titulo: 'Gelian', Arial, sans-serif;
  --bp-font-subtitulo: 'Poppins', 'HelveticaNeueLTProMd', Arial, sans-serif;
  /* Falta Helvetica Neue LT Pro Regular/Bold — usando Arial de respaldo */
  --bp-font-texto: Arial, Helvetica, sans-serif;
  --bp-font-titulo-seccion: Arial, Helvetica, sans-serif;
}

/* ---------- FUENTES ---------- */
@font-face {
  font-family: 'Gelian';
  src: url('../fonts/Gelian.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'HelveticaNeueLTProMd';
  src: url('../fonts/HelveticaNeueLTProMd.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'HelveticaNeueLTProTh';
  src: url('../fonts/HelveticaNeueLTProTh.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'HelveticaNeueLTW0545Light';
  src: url('../fonts/HelveticaNeueLTW0545Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: block;
}



body {
  margin: 0;
  font-family: var(--bp-font-texto);
  color: var(--bp-color-texto);
 
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-kerning: normal;
  font-variant-ligatures: none;
}

a {
  font-family: inherit;
}

/* ============================================
   HEADER (se repite en las 9 páginas)
   El menú va directo sobre el fondo rojo, sin
   contenedor blanco. Texto blanco por defecto,
   amarillo (#F4F0A4) en hover y en la página activa.
   ============================================ */
.bp-header-bg {
  background-color: var(--bp-color-marca);
}

.bp-header {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 110px;
}

.bp-header-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.bp-logo img {
  height: 28px;
  display: block;
}

.bp-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.bp-nav a {
  position: relative;
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.bp-nav a:hover,
.bp-nav a.is-active {
  color: var(--bp-color-amarillo);
}

/* Desplegable de "Productos" (escritorio) */
.bp-nav-dropdown-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.bp-nav-dropdown-wrap > a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.bp-nav-chevron {
  transition: transform 0.2s ease;
}

.bp-nav-dropdown-wrap:hover .bp-nav-chevron,
.bp-nav-dropdown-wrap:focus-within .bp-nav-chevron {
  transform: rotate(180deg);
}

.bp-nav-dropdown-panel {
  position: absolute;
  top: 150%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--bp-color-crema);
  border-radius: 16px;
  padding: 10px;
  min-width: 230px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bp-nav-dropdown-wrap:hover .bp-nav-dropdown-panel,
.bp-nav-dropdown-wrap:focus-within .bp-nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Puente invisible para que el mouse no "pierda" el hover entre el link y el panel */
.bp-nav-dropdown-panel::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 0;
  right: 0;
  height: 6px;
}

.bp-nav-dropdown-panel a {
  display: block;
  padding: 11px 14px;
  border-radius: 10px;
  color: var(--bp-color-marca);
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.bp-nav-dropdown-panel a:hover {
  background: var(--bp-color-marca);
  color: #fff;
}

.bp-globe-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.bp-globe-icon svg {
  width: 18px;
  height: 18px;
}

.bp-lang-wrap {
  position: relative;
}

.bp-lang-dropdown {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 46px;
  right: 0;
  background: var(--bp-color-amarillo);
  border-radius: 16px;
  padding: 16px 22px;
  min-width: 180px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  z-index: 60;
}

.bp-lang-dropdown.is-open {
  display: flex;
}

.bp-lang-dropdown-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--bp-color-marca);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.bp-lang-options {
  display: flex;
  gap: 20px;
}

.bp-lang-option {
  background: none;
  border: none;
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  color: var(--bp-color-texto);
  cursor: pointer;
  padding: 2px 0;
  letter-spacing: 0.3px;
}

.bp-lang-option.is-active {
  color: var(--bp-color-marca);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================
   MENÚ HAMBURGUESA (móvil/tablet, se repite en las 9 páginas)
   ============================================ */
.bp-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.bp-hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.bp-hamburger.is-open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.bp-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.bp-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Overlay oscuro detrás del drawer */
.bp-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 90;
}

.bp-drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Drawer lateral */
.bp-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 82%;
  max-width: 320px;
  background: var(--bp-color-crema);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 100;
  display: flex;
  flex-direction: column;
  border-radius: 24px 0 0 24px;
  box-shadow: -12px 0 40px rgba(0,0,0,0.2);
  overflow-y: auto;
}

.bp-drawer.is-open {
  transform: translateX(0);
}

.bp-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  background: var(--bp-color-marca);
  border-radius: 24px 0 0 0;
  flex-shrink: 0;
}

.bp-drawer-logo {
  height: 34px;
  width: auto;
}

.bp-drawer-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.bp-drawer-close:hover {
  background: rgba(255,255,255,0.3);
}

.bp-drawer-links {
  display: flex;
  flex-direction: column;
  padding: 16px 14px;
  gap: 2px;
}

.bp-drawer-links a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 14px;
  border-radius: 13px;
  color: var(--bp-color-texto);
  text-decoration: none;
  font-family: var(--bp-font-subtitulo);
  font-weight: 500;
  font-size: 16px;
  transition: background 0.2s ease, color 0.2s ease;
}

.bp-drawer-links a svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--bp-color-marca);
  transition: color 0.2s ease;
}

.bp-drawer-links a:hover,
.bp-drawer-links a.is-active {
  background: var(--bp-color-marca);
  color: #fff;
}

.bp-drawer-links a:hover svg,
.bp-drawer-links a.is-active svg {
  color: #fff;
}

/* Acordeón de "Productos" dentro del drawer móvil */
.bp-drawer-item-group {
  display: flex;
  flex-direction: column;
}

.bp-drawer-item-row {
  display: flex;
  align-items: stretch;
  gap: 4px;
}

.bp-drawer-item-row .bp-drawer-link-main {
  flex: 1;
  min-width: 0;
}

.bp-drawer-expand-toggle {
  width: 48px;
  flex-shrink: 0;
  background: none;
  border: none;
  border-radius: 13px;
  color: var(--bp-color-marca);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.bp-drawer-expand-toggle:hover {
  background: rgba(150,44,51,0.1);
}

.bp-drawer-expand-toggle.is-open {
  transform: rotate(180deg);
}

.bp-drawer-submenu {
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  transition: max-height 0.3s ease;
}

.bp-drawer-submenu.is-open {
  max-height: 300px;
}

.bp-drawer-submenu a {
  padding: 11px 14px;
  border-radius: 11px;
  color: var(--bp-color-texto);
  text-decoration: none;
  font-family: var(--bp-font-subtitulo);
  font-weight: 500;
  font-size: 14px;
  opacity: 0.85;
  transition: background 0.15s ease, color 0.15s ease;
}

.bp-drawer-submenu a:hover {
  background: var(--bp-color-marca);
  color: #fff;
  opacity: 1;
}

.bp-drawer-lang {
  margin-top: auto;
  padding: 20px 24px 28px 24px;
  border-top: 1px solid rgba(0,0,0,0.08);
  flex-shrink: 0;
}

.bp-drawer-lang .bp-lang-dropdown-title {
  color: var(--bp-color-marca);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.bp-drawer-lang .bp-lang-options {
  display: flex;
  gap: 22px;
}

.bp-drawer-lang .bp-lang-option {
  color: var(--bp-color-texto);
  opacity: 0.7;
}

.bp-drawer-lang .bp-lang-option.is-active {
  opacity: 1;
  color: var(--bp-color-marca);
}

/* Body con scroll bloqueado mientras el drawer está abierto */
body.bp-no-scroll {
  overflow: hidden;
}

/* ============================================
   HERO (solo Home)
   ============================================ */

/* Contiene el "sangrado" del fondo de marca (::before de abajo)
   para que no genere scroll horizontal. En Home esto deja la zona
   de la pestaña (.bp-hero-tab) fuera del rojo, tal como estaba. */
.bp-hero-bg {
  overflow-x: hidden;
}

/* El contenido se limita a max-width:1200px como el header (para
   quedar alineados). El fondo de marca lo pinta el ::before, que
   "rompe" a todo el ancho de la pantalla pero solo en la altura
   de este bloque (top:0/bottom:0) — no se filtra hacia abajo, a
   diferencia de un box-shadow con spread (que sangra en todas
   direcciones), así la pestaña de abajo queda sin rojo detrás. */
.bp-hero {
  position: relative;
  z-index: 0;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 110px 30px 110px;
  gap: 20px;
}

.bp-hero::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  background-color: var(--bp-color-marca);
}

.bp-hero-text {
  max-width: 480px;
  display: flex;
  flex-direction: column;
}

.bp-hero-text-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  margin: 0 0 28px 0;
}

.bp-hero-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bp-color-amarillo);
  color: var(--bp-color-texto);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 13px;
  transition: background 0.25s ease, transform 0.2s ease;
}

.bp-hero-btn svg {
  transition: transform 0.25s ease;
}

.bp-hero-btn:hover {
  background: var(--bp-color-amarillo-hover);
  transform: translateY(-2px);
}

.bp-hero-btn:hover svg {
  transform: translateX(4px);
}

.bp-hero-img img {
  max-width: 480px;
  width: 100%;
  height: auto;
  display: block;
}

.bp-hero-tab {
  position: relative;
  line-height: 0;
}

.bp-hero-tab-bg {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.bp-scroll-arrow {
  width: clamp(32px, 6vw, 56px);
  height: clamp(32px, 6vw, 56px);
  border-radius: 50%;
  background: var(--bp-color-amarillo);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  z-index: 5;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.bp-scroll-arrow svg {
  transition: transform 0.25s ease;
}

.bp-scroll-arrow:hover {
  background: var(--bp-color-marca);
  transform: translate(-50%, -50%) scale(1.08);
}

.bp-scroll-arrow:hover svg path {
  stroke: #fff;
}

.bp-scroll-arrow:hover svg {
  transform: translate(2px, -2px);
}

/* ============================================
   LOS MÁS VENDIDOS (solo Home)
   ============================================ */
.bp-vendidos-wrap {
  background: #fff;
  padding: 64px 110px 80px 110px;
}

.bp-vendidos-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.bp-vendidos-title {
  color: var(--bp-color-marca);
  font-family: var(--bp-font-subtitulo);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 32px 0;
}

.bp-vendidos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.4fr;
  gap: 20px;
  align-items: stretch;
}

.bp-producto-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bp-producto-img {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.bp-producto-img img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
}

.bp-producto-estrellas {
  color: var(--bp-color-marca);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.bp-producto-nombre {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--bp-color-marca);
  margin: 0 0 8px 0;
  min-height: 36px;
  display: flex;
  align-items: center;
}

.bp-leer-mas {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--bp-color-marca);
  text-decoration: none;
  background: var(--bp-color-amarillo);
  padding: 8px 16px;
  border-radius: 13px;
  transition: background 0.25s ease, transform 0.2s ease;
}

.bp-leer-mas svg {
  transition: transform 0.25s ease;
}

.bp-leer-mas:hover {
  background: var(--bp-color-amarillo-hover);
  transform: translateY(-2px);
}

.bp-leer-mas:hover svg {
  transform: translateX(3px);
}

.bp-crea-card {
  padding: 0;
  position: relative;
  overflow: visible;
  aspect-ratio: 442 / 560;
  align-self: start;
}

.bp-crea-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
  z-index: 0;
}

/* El título y el párrafo ahora vienen dibujados dentro de la propia
   imagen de fondo (bp-crea-card-bg), ya no se dibujan con HTML/CSS.
   El padding queda en % (no en px) para que el botón, que sí sigue
   siendo HTML real, quede siempre alineado con el margen izquierdo
   del texto de la imagen sin importar el tamaño de la tarjeta
   (el % es relativo al ancho, y como la tarjeta tiene aspect-ratio
   fijo, escala proporcional tanto en X como en Y). */
.bp-crea-card-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
  padding: 0 13.3% 11% 13.3%;
}

.bp-crea-btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: var(--bp-color-amarillo);
  color: var(--bp-color-marca);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 13px;
  transition: background 0.25s ease, transform 0.2s ease;
}

.bp-crea-btn svg {
  transition: transform 0.25s ease;
}

.bp-crea-btn:hover {
  background: var(--bp-color-amarillo-hover);
  transform: translateY(-2px);
}

.bp-crea-btn:hover svg {
  transform: translateX(4px);
}

.bp-crea-dots {
  position: absolute;
  top: 32px;
  right: 28px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.bp-crea-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: background 0.25s ease;
  cursor: pointer;
}

.bp-crea-dot.is-active {
  background: #fff;
}

/* ============================================
   FOOTER
   ============================================ */
.bp-footer {
  background-color: var(--bp-color-marca);
  padding: 48px 90px 24px 90px;
}

.bp-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.bp-footer-logo img {
  height: 40px;
  width: auto;
}

.bp-footer-cols {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}

.bp-footer-col h4 {
  color: #fff;
  font-size: 14px;
  margin: 0 0 12px 0;
}

.bp-footer-col a {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.bp-footer-col a:hover {
  color: #fff;
}

.bp-footer-social {
  display: flex;
  gap: 12px;
}

.bp-footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.bp-footer-social a:hover {
  background: rgba(255,255,255,0.3);
}

.bp-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.bp-footer-bottom p {
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  margin: 0;
}

/* ============================================
   COLLAGE + "PARA NOSOTROS SON MÁS QUE SOLO EMPAQUES" (Home)
   ============================================ */
.bp-historia-wrap {
  background: #fff;
  padding: 0 86px 80px 86px;
}

.bp-historia-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
}

.bp-historia-collage {
  flex: 1 1 70%;
  border-radius: 24px;
  overflow: hidden;
}

.bp-historia-collage img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

.bp-historia-card {
  background: var(--bp-color-negro);
  color: #fff;
  border-radius: 24px 24px 24px 0;
  padding: 36px;
  max-width: 480px;
  margin-left: -80px;
  align-self: flex-end;
  transform: translateY(40px);
  position: relative;
  z-index: 2;
}

.bp-historia-card h3 {
  font-family: var(--bp-font-subtitulo);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  margin: 0;
  /* Los saltos de línea los define el <br> del HTML, no el ancho
     disponible: así el título siempre cae en las mismas 3 líneas. */
  white-space: nowrap;
}

.bp-historia-card h3::after {
  content: '';
  display: block;
  width: 26px;
  height: 2px;
  background: rgba(255,255,255,0.4);
  margin-top: 16px;
}

.bp-historia-card p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin: 40px 0 24px 0;
  /* Los saltos de línea los define el <br> del HTML, no el ancho
     disponible: así el texto siempre cae en las mismas líneas. */
  white-space: nowrap;
}

.bp-historia-btn {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  background: var(--bp-color-amarillo);
  color: var(--bp-color-texto);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.3;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 13px;
  transition: background 0.25s ease, transform 0.2s ease;
}

.bp-historia-btn svg {
  transition: transform 0.25s ease;
}

.bp-historia-btn:hover {
  background: var(--bp-color-amarillo-hover);
  transform: translateY(-2px);
}

.bp-historia-btn:hover svg {
  transform: translateX(4px);
}

/* ============================================
   MAPA DE UBICACIÓN (Home)
   ============================================ */
.bp-mapa-wrap {
  background: #fff;
  padding: 0 24px 80px 24px;
}

.bp-mapa-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.bp-mapa-iframe-wrap {
  border: 6px solid var(--bp-color-amarillo);
  border-radius: 24px;
  overflow: hidden;
}

.bp-mapa-frame {
  width: 100%;
  height: 340px;
}

.bp-mapa-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.bp-mapa-card {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bp-color-marca);
  color: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  max-width: 220px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
  z-index: 2;
}

.bp-mapa-card h3 {
  font-family: var(--bp-font-subtitulo);
  font-weight: 500;
  font-size: 16px;
  margin: 0 0 8px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

.bp-mapa-card p {
  font-size: 13px;
  margin: 0;
  color: rgba(255,255,255,0.85);
}

/* ============================================
   FRANJA CTA 
   ============================================ */
.bp-cta-franja {
  background: var(--bp-color-amarillo);
}

.bp-cta-franja-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.bp-cta-franja-inner p {
  color: var(--bp-color-marca);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  margin: 0;
}

.bp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--bp-color-texto);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 999px;
  transition: background 0.25s ease, transform 0.2s ease;
}

.bp-cta-btn svg {
  transition: transform 0.25s ease;
}

.bp-cta-btn:hover {
  background: var(--bp-color-negro);
  color: #fff;
  transform: translateY(-2px);
}

.bp-cta-btn:hover svg path {
  stroke: #fff;
}

.bp-cta-btn:hover svg {
  transform: translateX(4px);
}

/* ============================================
   PÁGINA PRODUCTOS - filas de categoría
   ============================================ */
.bp-productos-wrap {
  background: #fff;
  padding: 40px 90px 80px 90px;
}

.bp-productos-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bp-producto-row {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 48px;
}


.bp-producto-row--esquina-a {
  border-radius: 24px 24px 24px 0;
}

.bp-producto-row--esquina-b {
  border-radius: 24px 0 24px 24px;
}

.bp-producto-row--rojo {
  background: var(--bp-color-marca);
}

.bp-producto-row--negro {
  background: var(--bp-color-negro);
}

.bp-producto-row-img {
  flex: 0 0 40%;
}

.bp-producto-row-img img {
  width: 100%;
  height: auto;
  display: block;
}

.bp-producto-row-text {
  flex: 1;
  min-width: 0;
  color: #fff;
}

.bp-producto-row-text h2 {
  font-family: var(--bp-font-subtitulo);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 16px 0;
  position: relative;
  padding-bottom: 16px;
}

.bp-producto-row-text h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--bp-color-amarillo);
}

.bp-producto-row-text p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin: 0 0 24px 0;
  max-width: 480px;
}

.bp-producto-row-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bp-color-amarillo);
  color: var(--bp-color-texto);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 13px;
  transition: background 0.25s ease, transform 0.2s ease;
}

.bp-producto-row-btn svg {
  transition: transform 0.25s ease;
}

.bp-producto-row-btn:hover {
  background: var(--bp-color-amarillo-hover);
  transform: translateY(-2px);
}

.bp-producto-row-btn:hover svg {
  transform: translateX(4px);
}

/* ============================================
   PÁGINA DETALLE DE PRODUCTO (Etiquetas adhesivas,
   Fundas termoencogibles, Etiquetas TT/TD/PP)
   ============================================ */
.bp-detalle-hero {
  max-width: 1200px;
  margin: 40px auto 0 auto;
  padding: 0 90px;
}

.bp-detalle-hero--mt {
  margin-top: 24px;
}

.bp-detalle-hero-card {
  background: var(--bp-color-marca);
  border-radius: 24px 24px 24px 0;
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.bp-detalle-hero-text {
  flex: 1;
  min-width: 0;
  color: #fff;
}

.bp-detalle-hero-text h1 {
  font-family: var(--bp-font-subtitulo);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 16px 0;
  position: relative;
  padding-bottom: 16px;
}

.bp-detalle-hero-text h1::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--bp-color-amarillo);
}

.bp-detalle-hero-text p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 420px;
  margin: 0;
}

.bp-detalle-hero-img {
  flex: 0 0 40%;
}

.bp-detalle-hero-img img {
  width: 115%;
  height: auto;
  max-height: 340px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.bp-detalle-tags {
  max-width: 1200px;
  margin: 24px auto 0 auto;
  padding: 0 90px;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.bp-detalle-tag {
  flex: 1;
  min-width: 220px;
  position: relative;
  background: var(--bp-color-amarillo);
  border-radius: 0 24px 24px 24px;
  padding: 12px 24px 16px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  color: var(--bp-color-marca);
  overflow: hidden;
  max-height: 68px;
  transition: max-height 0.35s ease, box-shadow 0.3s ease;
  cursor: default;
}

.bp-detalle-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 4px;
  background: var(--bp-color-marca);
  border-radius: 0 0 4px 4px;
}

.bp-detalle-tag:hover {
  max-height: 280px;
  box-shadow: 0 16px 32px rgba(0,0,0,0.18);
}

.bp-detalle-tag-desc {
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}

.bp-detalle-tag:hover .bp-detalle-tag-desc {
  opacity: 1;
  transform: translateY(0);
}

.bp-detalle-tag-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-shrink: 0;
}

.bp-detalle-tag-bottom strong {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
}

.bp-detalle-tag img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.bp-detalle-section-title {
  max-width: 1200px;
  margin: 48px auto 20px auto;
  padding: 0 90px;
  color: var(--bp-color-marca);
  font-family: var(--bp-font-subtitulo);
  font-weight: 500;
  font-size: 18px;
}

.bp-detalle-acabados {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 90px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.bp-detalle-acabados--4 {
  grid-template-columns: repeat(4, 1fr);
}

.bp-detalle-acabado-card {
  background: var(--bp-color-amarillo);
  border-radius: 0 24px 24px 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-height: 289px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bp-detalle-acabado-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 28px rgba(0,0,0,0.18);
}

.bp-detalle-acabado-img-wrap {
  width: calc(100% + 20px);
  height: 170px;
  margin-top: auto;
  margin-bottom: 32px;
  margin-right: -20px;
  overflow: hidden;
}

.bp-detalle-acabado-img-wrap--grande {
  height: 220px;
}

.bp-detalle-acabado-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 75% 100%;
  display: block;
}

.bp-detalle-acabado-card img.bp-img-esquina-derecha {
  object-position: 100% 100%;
}

.bp-detalle-acabado-card img.bp-img-centrado-derecha {
  object-position: 100% 50%;
}

.bp-detalle-acabado-card .bp-producto-estrellas {
  color: var(--bp-color-marca);
}

.bp-detalle-acabado-card p {
  font-size: 12px;
  font-weight: 600;
  color: var(--bp-color-marca);
  margin: 0;
}


.bp-detalle-acabado-card--full {
  position: relative;
  align-self: start;
  background: var(--bp-color-amarillo);
  padding: 0;
  min-height: 0;
  border-radius: 0 24px 24px 24px;
  overflow: hidden;
}

.bp-detalle-acabado-card--full img {
  width: 100%;
  height: auto;
  object-fit: initial;
  object-position: initial;
  display: block;
}

.bp-detalle-clientes {
  max-width: 1200px;
  margin: 48px auto 0 auto;
  padding: 0 24px 60px 24px;
}

.bp-detalle-clientes-grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 24px;
  padding: 0 90px;
}

.bp-detalle-clientes-grid img {
  height: 36px;
  max-width: 180px;
  width: auto;
  min-width: 0;
  flex-shrink: 1;
  object-fit: contain;
}

/* Cada logo viene recortado a su propio contenido (sin un padding
   interno consistente entre marcas): algunos ocupan casi todo el
   lienzo en una sola línea (idime, Salvaje, La Cabrera) y se ven
   enormes con una altura fija, mientras que los que tienen texto
   en 2 líneas o un ícono adicional (Sheraton, Tequendama) se ven
   chicos. Se ajusta la altura de cada uno para que el logotipo en
   sí se vea más parejo entre todos. */
.bp-detalle-clientes-grid img[src*="cliente-idime"] {
  height: 24px;
}
.bp-detalle-clientes-grid img[src*="cliente-salvaje"] {
  height: 26px;
}
.bp-detalle-clientes-grid img[src*="cliente-lacabrera"] {
  height: 26px;
}
.bp-detalle-clientes-grid img[src*="cliente-quala"] {
  height: 34px;
}
.bp-detalle-clientes-grid img[src*="cliente-sheraton"] {
  height: 58px;
}
.bp-detalle-clientes-grid img[src*="cliente-tequendama"] {
  height: 46px;
}

/* ============================================
   PÁGINA DISEÑO DE PACKAGING
   ============================================ */
.bp-dp-checklist {
  max-width: 1200px;
  margin: 24px 90px 0 90px;
  padding: 24px;
  background: var(--bp-color-negro);
  border-radius: 0px 24px 24px 24px;
  display: flex;
  gap: 40px;
  color: #fff;
}

.bp-dp-checklist-title {
  flex: 0 0 220px;
}

.bp-dp-checklist-title h3 {
  font-family: var(--bp-font-subtitulo);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3;
  margin: 0 0 12px 0;
  position: relative;
  padding-bottom: 12px;
}

.bp-dp-checklist-title h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 3px;
  background: var(--bp-color-amarillo);
}

.bp-dp-checklist-title p {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.bp-dp-checklist-items {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.bp-dp-checklist-items span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.bp-dp-checklist-items svg {
  flex-shrink: 0;
}

.bp-dp-casos-wrap {
  max-width: 1200px;
  margin: 24px auto 0 auto;
  padding: 0 90px;
  display: flex;
  gap: 2px;
  align-items: center;
}

.bp-dp-casos-lista {
  flex: 1;
  min-width: 0;
  background: var(--bp-color-negro);
  border-radius: 24px 24px 0px 24px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bp-dp-casos-lista span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--bp-color-amarillo);
  font-size: 14px;
  font-weight: 600;
}

.bp-dp-casos-pregunta {
  flex: 0 0 260px;
  background: var(--bp-color-marca);
  border-radius: 20px 20px 20px 0px;
  padding: 28px;
  color: #fff;
}

.bp-dp-casos-pregunta p {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  position: relative;
  padding-top: 16px;
}

.bp-dp-casos-pregunta p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 3px;
  background: var(--bp-color-amarillo);
}

.bp-dp-tendencias {
  max-width: 1200px;
  margin: 24px 90px 60px 90px;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-right: 0px;
  padding-left: 24px;
  background: var(--bp-color-marca);
  border-radius: 24px 24px 0px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bp-dp-tendencias-text {
  flex: 0 0 160px;
  color: #fff;
}

.bp-dp-tendencias-text h3 {
  font-family: var(--bp-font-subtitulo);
  font-weight: 500;
  font-size: 18px;
  margin: 0 0 8px 0;
  position: relative;
  padding-bottom: 10px;
}

.bp-dp-tendencias-text h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 3px;
  background: var(--bp-color-amarillo);
}

.bp-dp-tendencias-text p {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin: 0 0 16px 0;
}

.bp-dp-tendencias-img {
  flex: 1;
  min-width: 0;
  border-radius: 16px;
  overflow: hidden;
}

.bp-dp-tendencias-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   BLOG
   ============================================ */
.bp-blog-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 80px 24px;
}

.bp-blog-post {
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.bp-blog-post:last-child {
  border-bottom: none;
}

.bp-blog-post h1 {
  font-size: 28px;
  line-height: 1.25;
  color: var(--bp-color-texto);
  margin: 0 0 16px 0;
}

.bp-blog-post-resumen {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin: 0 0 20px 0;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.bp-blog-post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.bp-blog-post-meta img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.bp-blog-post-meta .bp-meta-info {
  flex: 1;
  min-width: 0;
  font-size: 12px;
  line-height: 1.4;
}

.bp-blog-post-meta .bp-meta-info strong {
  display: block;
  font-size: 13px;
}

.bp-blog-post-meta .bp-meta-fecha {
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 12px;
}

.bp-blog-post-img {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}

.bp-blog-post-img img {
  width: 100%;
  height: auto;
  display: block;
}

.bp-blog-post-body p {
  font-size: 13px;
  line-height: 1.7;
  color: #333;
  margin: 0 0 16px 0;
}

/* ============================================
   CONTACTO
   ============================================ */
.bp-contacto-hero {
  position: relative;
  z-index: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 110px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.bp-contacto-hero::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  background-color: var(--bp-color-marca);
}

.bp-contacto-hero-text {
  flex: 1;
  min-width: 0;
  color: #fff;
}

.bp-contacto-hero-text h1 {
  font-size: 44px;
  margin: 0 0 16px 0;
}

.bp-contacto-hero-text p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  max-width: 420px;
  margin: 0 0 12px 0;
}

.bp-contacto-hero-img {
  flex: 0 0 35%;
}

.bp-contacto-hero-img img {
  width: 100%;
  height: auto;
  display: block;
}

.bp-contacto-form-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 90px 40px 90px;
}

.bp-contacto-form {
  background: var(--bp-color-negro);
  border-radius: 24px;
  padding: 48px;
  color: #fff;
}

.bp-contacto-form h2 {
  font-size: 22px;
  font-weight: 400;
  margin: 0;
}

.bp-contacto-form h2 + h2 {
  font-weight: 600;
  margin-bottom: 8px;
}

.bp-contacto-form-titulo {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.bp-contacto-form-titulo::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 3px;
  background: var(--bp-color-amarillo);
}

.bp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 20px;
}

.bp-form-field label {
  display: block;
  font-size: 12px;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.8);
}

.bp-form-field input,
.bp-form-field textarea {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 12px 14px;
  color: #fff;
  font-family: inherit;
  font-size: 13px;
}

.bp-form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.bp-form-consent {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin: 20px 0;
}

/* Campo trampa anti-spam: oculto para personas, los bots que
   completan todo el formulario "a ciegas" sí lo llenan. */
.bp-form-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.bp-form-alert {
  max-width: 1200px;
  margin: 0 auto 24px auto;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
}

.bp-form-alert--ok {
  background: rgba(201,73,77,0.12);
  color: var(--bp-color-marca);
  border: 1px solid rgba(201,73,77,0.3);
}

.bp-form-alert--error {
  background: rgba(220,53,69,0.1);
  color: #c0392b;
  border: 1px solid rgba(220,53,69,0.3);
}

.bp-form-footer {
  display: flex;
  justify-content: flex-end;
}

.bp-form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bp-color-amarillo);
  color: var(--bp-color-texto);
  font-weight: 600;
  font-size: 13px;
  border: none;
  cursor: pointer;
  padding: 12px 28px;
  border-radius: 13px;
  transition: background 0.25s ease, transform 0.2s ease;
}

.bp-form-submit:hover {
  background: var(--bp-color-amarillo-hover);
  transform: translateY(-2px);
}

.bp-material-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 90px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.bp-material-tag {
  border-radius: 0 16px 16px 16px;
  padding: 20px;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bp-material-tag:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 28px rgba(0,0,0,0.18);
}

.bp-material-tag--amarillo {
  background: var(--bp-color-amarillo);
  color: var(--bp-color-marca);
}

.bp-material-tag--rojo {
  background: var(--bp-color-marca);
  color: #fff;
}

.bp-material-tag strong {
  font-size: 14px;
  line-height: 1.3;
}

.bp-material-tag span {
  font-size: 11px;
  opacity: 0.8;
}

.bp-medidas-wrap {
  max-width: 1200px;
  margin: 24px auto 24px auto;
  padding: 0 90px;
}

.bp-medidas-bar {
  background: var(--bp-color-negro);
  border-radius: 0 24px 0 0;
  padding: 24px 32px;
  display: flex;
  gap: 40px;
  color: #fff;
  flex-wrap: wrap;
}

.bp-medidas-bar strong {
  font-size: 15px;
}

.bp-medidas-bar p {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  max-width: 460px;
  margin: 0;
}

.bp-medidas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.bp-medida-box {
  background: var(--bp-color-negro);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 32px 40px 32px;
  color: #fff;
}

.bp-medida-box strong {
  font-size: 18px;
  display: block;
  margin-bottom: 8px;
}

.bp-medida-box span {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}

.bp-medida-box:last-child,
.bp-medidas-grid > .bp-medida-box:nth-child(3) {
  border-radius: 0 0 24px 0;
}
.bp-medidas-grid > .bp-medida-box:nth-child(1) {
  border-radius: 0 0 0 24px;
}

/* ============================================
   NOSOTROS
   ============================================ */
.bp-nosotros-hero {
  position: relative;
  z-index: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2px;
  padding-bottom: 0px;
  padding-right: 110px;
  padding-left: 110px;
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-around;
}

.bp-nosotros-hero::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  background-color: var(--bp-color-marca);
}

.bp-nosotros-hero-text {
  flex: 1;
  min-width: 0;
  max-width: 620px;
}

.bp-nosotros-hero-title-row {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 20px;
}

.bp-nosotros-hero-heading {
  display: contents;
}

.bp-nosotros-hero-line1,
.bp-nosotros-hero-line2 {
  color: #fff;
  font-family: var(--bp-font-subtitulo);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.2;
  white-space: nowrap;
}

.bp-nosotros-hero-line1 {
  grid-column: 1 / -1;
  grid-row: 1;
}

.bp-nosotros-hero-line2 {
  grid-column: 1;
  grid-row: 2;
}

.bp-nosotros-hero-title-row p {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 4px 0;
  max-width: 260px;
}

.bp-nosotros-hero-img {
  flex: 0 0 42%;
  max-width: 460px;
  align-self: stretch;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
}

.bp-nosotros-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
}

.bp-nosotros-ticker {
  background: var(--bp-color-negro);
  color: #fff;
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.bp-nosotros-ticker-inner {
  display: flex;
  gap: 40px;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.bp-nosotros-historia {
  background: var(--bp-color-amarillo);
  padding: 60px 90px;
}

.bp-nosotros-historia-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}

.bp-nosotros-historia-img {
  flex: 0 0 38%;
  border-radius: 16px;
  overflow: hidden;
}

.bp-nosotros-historia-img img {
  width: 100%;
  height: auto;
  display: block;
}

.bp-nosotros-historia-text {
  flex: 1;
  min-width: 0;
  color: var(--bp-color-texto);
}

.bp-nosotros-historia-text h2 {
  font-size: 28px;
  margin: 0 0 8px 0;
}

.bp-nosotros-historia-text p.bp-subrayado {
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 20px 0;
}

.bp-nosotros-historia-text p {
  font-size: 13px;
  line-height: 1.7;
  margin: 0 0 14px 0;
}

.bp-mision-vision {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 70px 100px 70px;
  position: relative;
  min-height: 380px;
}

.bp-mision-vision-card {
  padding: 50px 40px;
  min-height: 300px;
  box-sizing: border-box;
}

.bp-mision-vision-card--rojo {
  background: var(--bp-color-marca);
  color: #fff;
  border-radius: 35px;
  position: relative;
  z-index: 1;
  width: 50%;
  
}

.bp-mision-vision-card--amarillo {
  background: var(--bp-color-amarillo);
  color: var(--bp-color-marca);
  border-radius: 35px;
  position: absolute;
  top: 40px;
  right: 60px;
  width: 50%;
  z-index: 2;
  box-shadow: -12px 16px 32px rgba(0,0,0,0.18);
}

.bp-mision-vision-card h2 {
  font-family: var(--bp-font-subtitulo);
  font-weight: 400;
  font-size: 38px;
  margin: 0 0 -12px 0;
}

.bp-mision-vision-card .bp-subrayado {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.85;
  margin: 0 0 40px 0;
}

.bp-mision-vision-card p {
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
  opacity: 0.9;
}

.bp-mision-vision-card .bp-mision-text-rojo {
  padding-right: 53px;
}

.bp-mision-vision-card .bp-mision-text-amarillo {
  padding-right: 10px;
  padding-left: 10px;
}

/* ============================================
   UTILIDADES 
   ============================================ */
.bp-u-nota-pendiente {
  font-size: 12px;
  color: #999;
}

.bp-u-mt-12 {
  margin-top: 12px;
}

.bp-u-m-0 {
  margin: 0;
}

.bp-u-mb-20 {
  margin-bottom: 20px;
}

.bp-u-w-auto {
  width: auto;
}

.bp-u-border-0 {
  border: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */


@media (max-width: 1200px) {
  .bp-vendidos-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  /* En vez de desaparecer de golpe, la tarjeta pasa a ocupar su
     propia fila (ya no comparte columna con los 4 productos) y se
     ve más chica, centrada, mientras los 4 productos sigan en una
     sola fila. Se oculta apenas los productos bajan a 2 por fila
     (ver breakpoint de 1100px más abajo). */
  .bp-crea-card {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 1100px) {
  .bp-vendidos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bp-crea-card {
    display: none;
  }
}

@media (max-width: 900px) {
  .bp-header-right { display: none; }
  .bp-hamburger { display: flex; }
  .bp-header { padding: 18px 20px; }
  .bp-hero { flex-direction: column; text-align: center; padding-left: 20px; padding-right: 20px; }
  .bp-hero-text { max-width: 100%; align-items: center; }
  .bp-hero-btn { align-self: center; }

  
  .bp-nosotros-hero-img {
    display: none;
  }
  .bp-nosotros-hero {
    padding-left: 20px;
    padding-right: 20px;
    justify-content: flex-start;
  }
  .bp-nosotros-hero-text {
    max-width: 100%;
  }

  .bp-detalle-clientes-grid {
    flex-wrap: wrap;
    gap: 28px 40px;
  }

  .bp-material-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .bp-footer-cols {
    gap: 36px;
  }

  
  .bp-mision-vision {
    min-height: 0;
    padding: 40px 24px;
  }
  .bp-mision-vision-card--rojo,
  .bp-mision-vision-card--amarillo {
    position: static;
    width: 100%;
    box-shadow: none;
  }
  .bp-mision-vision-card--amarillo {
    margin-top: 20px;
  }
}

@media (max-width: 600px) {
  .bp-vendidos-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
  .bp-historia-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
  .bp-vendidos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bp-historia-inner {
    flex-direction: column;
  }
  .bp-historia-card {
    margin-left: 0;
    margin-top: -40px;
    max-width: 100%;
    align-self: stretch;
    transform: none;
  }
  .bp-mapa-card {
    left: 12px;
    top: auto;
    bottom: 12px;
    transform: none;
    max-width: none;
    right: 12px;
  }
  .bp-producto-row {
    flex-direction: column;
    padding: 32px 24px;
  }
  .bp-producto-row-img {
    flex: none;
    width: 100%;
  }
  .bp-detalle-hero-card {
    flex-direction: column;
    padding: 32px 24px;
  }
  .bp-detalle-hero-text {
    width: 100%;
  }
  .bp-detalle-hero-img {
    flex: none;
    width: 100%;
  }
  .bp-detalle-acabados {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }
  .bp-detalle-acabados--5 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .bp-detalle-acabados--4 {
    padding: 0 12px;
    gap: 12px;
  }
  .bp-dp-checklist {
    flex-direction: column;
  }
  .bp-dp-casos-wrap {
    flex-direction: column;
  }
  .bp-dp-tendencias {
    flex-direction: column;
    padding-left: 24px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-top: 24px;
  }
  .bp-contacto-hero {
    flex-direction: column;
  }
  .bp-contacto-form {
    padding: 24px;
  }
  .bp-form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .bp-nosotros-hero-img {
    display: none;
  }
  .bp-nosotros-hero-title-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    
  }
  .bp-nosotros-hero-line1,
  .bp-nosotros-hero-line2 {
    white-space: normal;
  }
  .bp-nosotros-hero-title-row p {
    max-width: 100%;
  }
  .bp-nosotros-historia-inner {
    flex-direction: column;
  }
  .bp-nosotros-historia-img {
    flex: none;
    width: 100%;
  }

  /* Etiquetas TT/TD/PP: materiales y medidas en móvil */
  .bp-material-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bp-medidas-bar {
    flex-direction: column;
    gap: 12px;
    padding: 20px 24px;
  }
  .bp-medidas-grid {
    grid-template-columns: 1fr;
  }
  .bp-medida-box {
    border-top: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 20px 24px;
  }
  
  .bp-medidas-grid > .bp-medida-box:nth-child(1),
  .bp-medidas-grid > .bp-medida-box:nth-child(2) {
    border-radius: 0;
  }
  .bp-medida-box:last-child,
  .bp-medidas-grid > .bp-medida-box:nth-child(3) {
    border-radius: 0 0 24px 24px;
    border-bottom: none;
  }

 
  .bp-footer {
    padding: 40px 20px 24px 20px;
  }
  .bp-footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
  }
  .bp-footer-cols {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .bp-footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 16px;
  }
  .bp-cta-franja-inner {
    padding: 24px 20px;
  }
  .bp-productos-wrap {
    padding: 40px 20px 80px 20px;
  }
  .bp-detalle-hero {
    padding: 0 20px;
  }
  .bp-detalle-tags {
    padding: 0 20px;
  }
  .bp-detalle-section-title {
    padding: 0 20px;
  }
  .bp-detalle-clientes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-items: center;
    gap: 32px 16px;
    padding: 0 20px;
  }
  .bp-detalle-clientes-grid img {
    max-width: 120px;
  }
  
  .bp-detalle-clientes-grid img:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
  .bp-contacto-form-wrap {
    padding: 0 20px 40px 20px;
  }
  .bp-medidas-wrap {
    padding: 0 20px;
  }
  .bp-nosotros-historia {
    padding: 60px 20px;
  }
  .bp-nosotros-ticker-inner {
    flex-wrap: wrap;
    gap: 12px 20px;
    font-size: 11px;
    padding: 0 16px;
  }
  .bp-nosotros-ticker {
    white-space: normal;
  }
}
