@charset "UTF-8";
/* DEVMC - 2026.04.27 - feature #bercovich-theme# "Componentes: hero, brand, welcome, stats, cats, insp, news, branches, contact, empresa" */

/* ===== Hero ===== */
.bv-hero {
  position: relative;
  overflow: hidden;
  height: 640px;
  background: var(--bv-black);
}
.bv-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms var(--ease-out);
  pointer-events: none;
}
.bv-hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.bv-hero__video,
.bv-hero__photo,
.bv-hero__placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bv-hero__photo {
  background-size: cover;
  background-position: center;
  animation: bvKenburns 14s ease-in-out infinite alternate;
}
@keyframes bvKenburns {
  from { transform: scale(1.0)  translate(0, 0); }
  to   { transform: scale(1.08) translate(-1%, -1.5%); }
}
.bv-hero__placeholder {
  background: linear-gradient(135deg, #1f1f1f 0%, #3a1010 60%, var(--bv-red) 140%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
}
.bv-hero__placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(227,6,19,0.25) 0, transparent 50%);
  animation: bvDrift 18s linear infinite;
}
@keyframes bvDrift {
  0%   { transform: scale(1.10) translate(0, 0); }
  50%  { transform: scale(1.15) translate(-2%, 1%); }
  100% { transform: scale(1.10) translate(0, 0); }
}
.bv-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, var(--bv-hero-overlay));
}
.bv-hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 64px;
  max-width: var(--container);
  margin: 0 auto;
  color: var(--bv-white);
}
.bv-hero--centered .bv-hero__content {
  align-items: center;
  text-align: center;
}
.bv-hero--split .bv-hero__content {
  align-items: flex-start;
  max-width: 720px;
  margin-left: 8%;
}
.bv-hero__placeholder-label {
  position: relative;
  z-index: 1;
  font-size: 13px;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.bv-hero h1 {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: var(--fw-extrabold);
  line-height: 1.0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: var(--bv-white);
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.bv-hero__sub {
  font-size: 18px;
  font-weight: var(--fw-regular);
  line-height: 1.5;
  max-width: 560px;
  margin: 0 0 32px;
  opacity: 0.95;
  color: var(--bv-white);
}
.bv-hero--centered .bv-hero__sub {
  margin-left: auto;
  margin-right: auto;
}
.bv-hero__dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}
.bv-hero__dots button {
  width: 8px;
  height: 8px;
  border-radius: var(--r-pill);
  border: none;
  background: rgba(255,255,255,0.5);
  transition: width 250ms, background 250ms;
}
.bv-hero__dots button.is-on {
  width: 28px;
  background: var(--bv-red);
}
.bv-hero__arrows {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  pointer-events: none;
  z-index: 4;
}
.bv-hero__arrows button {
  pointer-events: auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--bv-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-base), transform var(--dur-base);
}
.bv-hero__arrows button:hover {
  background: rgba(255,255,255,0.25);
  transform: scale(1.06);
}
.bv-hero__cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--bv-white);
  opacity: 0.7;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.bv-hero__cue::after {
  content: "";
  width: 1px;
  height: 36px;
  background: var(--bv-white);
  animation: bvScrollCue 2s ease-in-out infinite;
}
@keyframes bvScrollCue {
  0%      { transform: scaleY(0); transform-origin: top; }
  50%     { transform: scaleY(1); transform-origin: top; }
  50.01%  { transform-origin: bottom; }
  100%    { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== Brand strip ===== */
.bv-brand-strip {
  padding: 40px 0;
  background: var(--bv-white);
  overflow: hidden;
  border-top: 1px solid var(--bv-grey-100);
  border-bottom: 1px solid var(--bv-grey-100);
  cursor: grab;
  user-select: none;
}
.bv-brand-strip.is-dragging {
  cursor: grabbing;
}
.bv-brand-strip__track {
  display: flex;
  gap: 64px;
  align-items: center;
  white-space: nowrap;
  animation: bvMarquee 40s linear infinite;
  will-change: transform;
}
.bv-brand-strip.is-dragging .bv-brand-strip__track {
  animation-play-state: paused;
}
.bv-brand-strip__item {
  flex: 0 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 160px;
}
.bv-brand-strip__item img {
  display: block;
  height: auto;
  width: auto;
  max-height: 44px;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(0.5) brightness(1.05);
  opacity: 0.8;
  transition: filter var(--dur-base), opacity var(--dur-base);
  pointer-events: none;
  -webkit-user-drag: none;
}
.bv-brand-strip__item:hover img {
  filter: grayscale(0);
  opacity: 1;
}
@keyframes bvMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== Welcome ===== */
.bv-welcome__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.bv-welcome__img {
  aspect-ratio: 4/3;
  background: var(--bv-grey-100) center/cover no-repeat;
}
.bv-welcome__img--bath {
  background-image: url('/theme-front/construccion/bercovich/img/lifestyle/bathroom-inspiration.jpg');
}
/* # DEVMC 2026.05.18 - Nueva imagen institucional Bienvenidos (584x438) */
.bv-welcome__img--main {
  background-image: url('/theme-front/construccion/bercovich/img/lifestyle/bienvenidos.png');
}
.bv-welcome__bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 32px 0;
}
.bv-welcome__bullets h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  color: var(--bv-red);
  font-weight: var(--fw-bold);
  margin: 0 0 6px;
}
.bv-welcome__bullets h4::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bv-red);
}
.bv-welcome__bullets p {
  font-size: 13px;
  color: var(--fg-3);
  line-height: 1.55;
  margin: 0;
}

/* ===== Stats ===== */
.bv-stats {
  background: var(--bv-grey-50);
  padding: 64px 24px;
}
.bv-stats__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
/* # DEVMC 2026.05.18 - Variante 3 columnas centrada */
.bv-stats__grid--3 {
  grid-template-columns: repeat(3, auto);
  justify-content: center;
}
.bv-stats--centered .bv-stats__item {
  justify-content: center;
}
.bv-stats__item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.bv-stats__num {
  font-size: 72px;
  font-weight: var(--fw-extrabold);
  color: var(--bv-red);
  line-height: 1;
  letter-spacing: -0.02em;
}
.bv-stats__lbl {
  font-size: 15px;
  font-weight: var(--fw-semibold);
  color: var(--bv-ink);
  max-width: 140px;
  line-height: 1.3;
}

/* ===== Cats ===== */
.bv-cats__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 16px;
}
.bv-cats__viewport {
  overflow: hidden;
  cursor: grab;
  user-select: none;
}
.bv-cats__viewport.is-dragging {
  cursor: grabbing;
}
.bv-cats__track {
  display: flex;
  gap: 20px;
  will-change: transform;
}
.bv-cats__track > * { flex: 0 0 calc((100% - 60px) / 4); }
/* DEVMC - 2026.04.29 - bugfix #cats-click# "Quitar pointer-events:none que bloqueaba el click en la card. dragMoved en JS ya previene el click cuando hubo arrastre real" */

.bv-cat-card {
  border: 1px solid var(--bv-grey-200);
  border-radius: 6px;
  overflow: hidden;
  background: var(--bv-white);
  cursor: pointer;
  transition: transform 250ms, box-shadow 250ms;
  display: block;
  color: inherit;
  text-decoration: none;
}
.bv-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.bv-cat-card__img {
  aspect-ratio: 3/4;
  background: var(--bv-grey-100) center/cover no-repeat;
}
.bv-cat-card__body {
  padding: 18px 14px;
  text-align: center;
}
.bv-cat-card__ttl {
  font-size: 18px;
  font-weight: var(--fw-bold);
  color: var(--bv-ink);
  margin-bottom: 4px;
}
.bv-cat-card__sub {
  font-size: 13px;
  color: var(--bv-red);
  font-weight: var(--fw-medium);
}

.bv-arrow-btn {
  background: transparent;
  border: none;
  color: var(--bv-grey-300);
  padding: 8px;
  cursor: pointer;
  transition: color var(--dur-base);
}
.bv-arrow-btn:hover { color: var(--bv-red); }
.bv-arrow-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ===== Inspiracion (stage full-width navegable) ===== */
.bv-insp {
  padding-top: 80px;
  background: var(--bv-white);
}
.bv-insp h2 { text-align: center; }
.bv-insp__stage {
  position: relative;
  height: 540px;
  margin-top: 48px;
  background-size: cover;
  background-position: center;
  transition: background-image 400ms var(--ease-out);
}
.bv-insp__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 200ms var(--ease-out), transform 200ms var(--ease-out);
}
.bv-insp__arrow:hover {
  background: var(--bv-white);
  transform: translateY(-50%) scale(1.06);
}
.bv-insp__arrow--l { left: 32px; }
.bv-insp__arrow--r { right: 32px; }
.bv-insp__pin {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 22px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: var(--fw-semibold);
}
@media (max-width: 600px) {
  .bv-insp__stage { height: 360px; }
  .bv-insp__arrow { width: 44px; height: 44px; }
  .bv-insp__arrow--l { left: 12px; }
  .bv-insp__arrow--r { right: 12px; }
}

/* ===== News ===== */
.bv-news { background: var(--bv-grey-50); }
.bv-news__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.bv-news h2 {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  margin: 0;
}
.bv-news__see-all {
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bv-red);
}
.bv-news__see-all:hover { text-decoration: underline; }
.bv-news__title a { color: inherit; }
.bv-news__title a:hover { color: var(--bv-red); }
.bv-news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.bv-news__card {
  display: flex;
  flex-direction: column;
}
.bv-news__pic {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  margin-bottom: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.bv-news__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms var(--ease-out);
}
.bv-news__card:hover .bv-news__img { transform: scale(1.04); }
.bv-news__stamp {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--bv-white);
  padding: 8px 12px;
  text-align: center;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 2;
  font-style: normal;
}
.bv-news__stamp-d {
  font-size: 18px;
  font-weight: var(--fw-bold);
  color: var(--bv-ink);
  display: block;
  font-style: normal;
}
.bv-news__stamp-m {
  font-size: 10px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  color: var(--fg-3);
  display: block;
  font-style: normal;
}
.bv-news__tag {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(0,0,0,0.6);
  color: var(--bv-white);
  font-size: 11px;
  padding: 6px 12px;
  z-index: 2;
}
.bv-news__title {
  font-size: 18px;
  font-weight: var(--fw-bold);
  line-height: 1.3;
  margin: 0 0 12px;
  text-align: center;
}
.bv-news__more {
  display: block;
  text-align: center;
  font-size: 13px;
  color: var(--fg-4);
  text-decoration: underline;
}

/* ===== Branches grid (pagina /sucursales) - card horizontal info + mapa ===== */
.bv-branches-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.bv-branch-row {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  background: var(--bv-white);
  border: 1px solid var(--bv-grey-200);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow var(--dur-base) var(--ease-out);
}
.bv-branch-row:hover { box-shadow: var(--shadow-hover); }
.bv-branch-row.is-coming-soon { opacity: 0.85; }

.bv-branch-row__info {
  padding: 28px;
  background: var(--bv-red);
  color: var(--bv-white);
  display: flex;
  flex-direction: column;
}
.bv-branch-row__info .bv-btn { width: auto; }

.bv-branch-row__badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--bv-white);
  color: var(--bv-red);
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-sm);
  margin-bottom: 10px;
}
.bv-branch-row__badge--soon { background: var(--bv-graphite); color: var(--bv-white); }

.bv-branch-row__title {
  font-size: 22px;
  font-weight: var(--fw-bold);
  color: var(--bv-white);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.2;
}
.bv-branch-row__chevron {
  font-size: 28px;
  line-height: 1;
  font-weight: var(--fw-bold);
}
.bv-branch-row__address {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 16px;
}
.bv-branch-row__meta {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bv-branch-row__meta li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  gap: 8px;
}
.bv-branch-row__meta li i {
  width: 16px;
  text-align: center;
  opacity: 0.9;
}
.bv-branch-row__actions {
  margin-top: auto;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.bv-branch-row__actions .bv-btn--primary {
  background: var(--bv-white);
  color: var(--bv-red);
}
.bv-branch-row__actions .bv-btn--primary:hover {
  background: var(--bv-grey-100);
  color: var(--bv-red);
}
.bv-branch-row__actions .bv-btn--secondary {
  background: transparent;
  color: var(--bv-white);
  border: 1px solid var(--bv-white);
}
.bv-branch-row__actions .bv-btn--secondary:hover {
  background: var(--bv-white);
  color: var(--bv-red);
}

.bv-branch-row__map {
  background: var(--bv-grey-100);
  min-height: 240px;
  position: relative;
}
.bv-branch-row__map iframe {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border: 0;
  display: block;
}
.bv-branch-row__map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bv-grey-300);
  font-size: 48px;
}

@media (max-width: 768px) {
  .bv-branch-row { grid-template-columns: 1fr; }
  .bv-branch-row__map { min-height: 220px; order: -1; }
}

/* ===== Branches (carrusel) ===== */
.bv-branches__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.bv-branches__head .bv-section-lead { max-width: 560px; margin-bottom: 0; }
.bv-branches__viewport {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.bv-branches__viewport.is-dragging { cursor: grabbing; }
/* pointer-events:none removido — bloqueaba click. dragMoved en JS previene click si hubo drag */
.bv-branches__track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  will-change: transform;
}
/* flex-basis lo setea Vue dinamicamente segun branches.length vs visiblePerView */
.bv-branch-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border: 1px solid var(--bv-grey-200);
  border-radius: 8px;
  background: var(--bv-white);
  overflow: hidden;
  transition: box-shadow var(--dur-base);
}
.bv-branch-card:hover { box-shadow: var(--shadow-hover); }
.bv-branch-card.is-coming-soon { opacity: 0.85; }
.bv-branch-card__img {
  aspect-ratio: 16/10;
  background: var(--bv-grey-100) center/cover no-repeat;
  width: 100%;
}
.bv-branch-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.bv-branch-card h4 {
  font-size: 22px;
  font-weight: var(--fw-bold);
  margin: 0 0 12px;
}
.bv-branch-card__row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--fg-3);
  margin-bottom: 8px;
}
.bv-branch-card__row .bv-branch-card__ic {
  color: var(--bv-red);
  flex-shrink: 0;
  margin-top: 2px;
}
.bv-branch-card__badge {
  display: inline-block;
  width: auto;
  align-self: flex-start;
  background: var(--bv-red);
  color: var(--bv-white);
  font-size: 10px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-sm);
  margin-bottom: 10px;
}
.bv-branch-card__badge--soon { background: var(--bv-graphite); }
.bv-branch-card__actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
  flex-wrap: wrap;
}
.bv-branch-card__map {
  margin-top: 18px;
}
.bv-branch-card__map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: var(--r-md);
}

/* ===== Contact ===== */
.bv-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.bv-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bv-form input,
.bv-form textarea {
  width: 100%;
  border: 1px solid var(--bv-grey-200);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  font-family: inherit;
  font-size: 14px;
  background: var(--bv-white);
}
.bv-form input:focus,
.bv-form textarea:focus {
  outline: none;
  border-color: var(--bv-red);
}
.bv-form textarea {
  min-height: 140px;
  resize: vertical;
}
.bv-form label {
  font-size: 12px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: -10px;
}
.bv-form .bv-form__error {
  color: var(--bv-error);
  font-size: 12px;
  margin-top: -10px;
}
.bv-contact__row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.bv-contact__row-ic { color: var(--bv-red); }
.bv-contact__row-lbl {
  font-weight: var(--fw-bold);
  display: block;
  margin-bottom: 2px;
}
.bv-contact__row-val { color: var(--fg-3); }
.bv-contact__row-val--accent { color: var(--bv-red); }
.bv-contact__row--gap { margin-bottom: 18px; }

.bv-form__submit { align-self: flex-start; }
.bv-form__remember {
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: var(--fw-regular);
}

.bv-cta-row {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.bv-footer__list-link {
  display: block;
  padding: 2px 0;
}

/* ===== /productos (grid de cards estatica, sin carrusel) ===== */
.bv-section-title--center { text-align: center; }
.bv-products-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.bv-products-grid .bv-cat-card { display: flex; flex-direction: column; }
@media (max-width: 1100px) { .bv-products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .bv-products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .bv-products-grid { grid-template-columns: 1fr; } }

/* ===== Producto galeria (PPT slide 14) ===== */
.bv-section-lead--center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }

.bv-gallery-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.bv-gallery-cell {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  background: var(--bv-grey-100);
  cursor: zoom-in;
}
.bv-gallery-cell:nth-child(6n+1) { grid-row: span 2; }
.bv-gallery-cell:nth-child(6n+5) { grid-row: span 2; }
.bv-gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
  display: block;
}
.bv-gallery-cell:hover img { transform: scale(1.05); }
.bv-gallery-cell-caption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: var(--fw-semibold);
  color: var(--fg-1);
  z-index: 3;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 250ms var(--ease-out), transform 250ms var(--ease-out);
}
.bv-gallery-cell:hover .bv-gallery-cell-caption {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 900px) {
  .bv-gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .bv-gallery-cell:nth-child(6n+1),
  .bv-gallery-cell:nth-child(6n+5) { grid-row: span 1; }
}
@media (max-width: 520px) {
  .bv-gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
}

/* ===== Empresa / Timeline ===== */
.bv-empresa__lede {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.bv-empresa__lede--reverse {
  grid-template-columns: 1fr 1.2fr;
}

/* ===== Banner En todos tus proyectos (PPT pagina 7) ===== */
.bv-eyebrow--light { color: rgba(255, 255, 255, 0.85); }

.bv-products-banner {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(10, 10, 10, 0.6), rgba(10, 10, 10, 0.6)),
              url('/theme-front/construccion/bercovich/img/heroes/duomo-gris.jpg') center/cover no-repeat;
  color: var(--bv-white);
  padding: 96px 24px;
}
.bv-products-banner__overlay {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.bv-products-banner__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: var(--fw-extrabold);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  color: var(--bv-white);
}
.bv-products-banner__lead {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 8px;
}
@media (max-width: 600px) {
  .bv-products-banner { min-height: 360px; padding: 72px 20px; }
}
.bv-empresa__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bv-empresa__bullets li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  color: var(--fg-3);
  line-height: 1.6;
}
.bv-empresa__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bv-red);
}

/* ===== Nuestros Valores (PPT slide 6) ===== */
.bv-empresa__block {
  margin-top: 56px;
  padding-top: 48px;
  border-top: var(--border-soft);
}
.bv-values { /* solo cuando es seccion suelta, fuera del bloque empresa, mantener bg */ }
.bv-empresa__block.bv-values { background: transparent; }
.bv-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.bv-value-card {
  background: var(--bv-white);
  border: 1px solid var(--bv-grey-200);
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 250ms var(--ease-out), box-shadow 250ms var(--ease-out), border-color 250ms var(--ease-out);
}
.bv-value-card:hover {
  transform: translateY(-4px);
  border-color: var(--bv-red);
  box-shadow: var(--shadow-hover);
}
.bv-value-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bv-red);
  color: var(--bv-white);
  font-size: 28px;
  margin-bottom: 16px;
}
.bv-value-card__title {
  font-size: 17px;
  font-weight: var(--fw-bold);
  margin: 0 0 10px;
  color: var(--fg-1);
  line-height: 1.3;
}
.bv-value-card__text {
  font-size: 14px;
  color: var(--fg-3);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 1000px) {
  .bv-values__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .bv-values__grid { grid-template-columns: 1fr; }
}
.bv-empresa__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--bv-grey-100);
}
.bv-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
  padding-top: 48px;
  border-top: var(--border-soft);
}
.bv-timeline__yr {
  font-size: 14px;
  font-weight: var(--fw-bold);
  color: var(--bv-red);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.bv-timeline h4 {
  font-size: 18px;
  font-weight: var(--fw-bold);
  margin: 0 0 6px;
}
.bv-timeline p {
  font-size: 13px;
  color: var(--fg-3);
  line-height: 1.5;
  margin: 0;
}

/* ===== Page (slug dinamico) ===== */
.bv-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px;
}
.bv-page__title {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: var(--fw-extrabold);
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}
.bv-page__rule {
  width: 64px;
  height: 3px;
  background: var(--bv-red);
  border: 0;
  margin: 0 0 32px;
}
.bv-page__content {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-2);
}
.bv-page__content h2 { font-size: 24px; margin-top: 32px; }
.bv-page__content h3 { font-size: 20px; margin-top: 24px; }
.bv-page__content a { color: var(--bv-red); text-decoration: underline; }

/* ===== Login ===== */
.bv-login {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 48px 24px;
  background: var(--bv-grey-50);
}
.bv-login__card {
  background: var(--bv-white);
  border-radius: var(--r-md);
  border: var(--border-soft);
  padding: 32px;
  max-width: 420px;
  width: 100%;
  box-shadow: var(--shadow-card);
}
.bv-login__logo {
  text-align: center;
  margin-bottom: 24px;
}
.bv-login__logo img { max-height: 56px; margin: 0 auto; }
.bv-login__title {
  text-align: center;
  margin: 0 0 24px;
  font-size: 22px;
  font-weight: var(--fw-bold);
}
.bv-login__back {
  display: block;
  text-align: center;
  margin-top: 18px;
  font-size: 13px;
  color: var(--bv-red);
  text-decoration: underline;
}
.bv-login__error {
  background: var(--bv-red-50);
  color: var(--bv-red-700);
  font-size: 13px;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  margin-bottom: 16px;
}
