@charset "UTF-8";
/* DEVMC - 2026.04.27 - feature #bercovich-theme# "Layout: top-strip, header, mobile drawer, footer, WA pill" */

/* Vue inline templates: nunca renderizar visualmente (defensivo ante CSS reset) */
script[type="text/x-template"] { display: none !important; }

/* ===== Top strip ===== */
.bv-top-strip {
  background: var(--bv-red);
  color: var(--bv-white);
  font-size: 12px;
  font-weight: var(--fw-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 8px 24px;
  height: 32px;
  transition: height 250ms ease, padding 250ms ease;
  overflow: hidden;
}
.bv-top-strip.is-hidden {
  height: 0;
  padding: 0 24px;
}
.bv-top-strip__sep { opacity: 0.4; }
.bv-top-strip a {
  color: var(--bv-white);
  text-decoration: underline;
}
.bv-top-strip a:hover { color: var(--bv-white); opacity: 0.85; }

/* ===== Header desktop ===== */
.bv-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  border-bottom: var(--border-soft);
  background: var(--bv-white);
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
}
/* # DEVMC 2026.05.18 - Logo header agrandado (42->60) sin tocar header padding */
.bv-header__logo img { height: 60px; }
.bv-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
}
.bv-nav__link {
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--bv-ink);
  padding: 6px 0;
  transition: color var(--dur-base);
}
.bv-nav__link:hover,
.bv-nav__link.is-active { color: var(--bv-red); }

.bv-social {
  display: flex;
  gap: 8px;
  margin-left: 12px;
  flex-wrap: nowrap;
}
.bv-social__sq {
  width: 32px;
  height: 32px;
  background: var(--bv-red);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bv-white);
  transition: transform 180ms, background 180ms;
  flex-shrink: 0;
}
.bv-social__sq:hover {
  transform: translateY(-2px);
  background: var(--bv-red-600);
  color: var(--bv-white);
}

/* ===== Mobile header ===== */
.bv-mobile-header {
  display: none;
  padding: 14px 20px;
  background: var(--bv-white);
  border-bottom: 1px solid var(--bv-grey-100);
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
}
/* # DEVMC 2026.05.18 - Logo mobile agrandado (38->52) */
.bv-mobile-header__logo img { height: 52px; }

.bv-ham {
  width: 54px;
  height: 54px;
  background: var(--bv-red);
  border: none;
  border-radius: var(--r-md);
  color: var(--bv-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ===== Mobile drawer ===== */
.bv-drawer {
  position: fixed;
  inset: 0;
  background: var(--bv-white);
  z-index: var(--z-drawer);
  display: flex;
  flex-direction: column;
  padding: 80px 28px 28px;
  transform: translateX(100%);
  transition: transform 280ms var(--ease-out);
}
.bv-drawer.is-open { transform: translateX(0); }
.bv-drawer__close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 54px;
  height: 54px;
  background: var(--bv-red);
  border: none;
  border-radius: var(--r-md);
  color: var(--bv-white);
}
.bv-drawer__nav {
  display: flex;
  flex-direction: column;
}
.bv-drawer__link {
  padding: 14px 0;
  font-size: 22px;
  font-weight: var(--fw-semibold);
  border-bottom: 1px solid var(--bv-grey-100);
  color: var(--bv-ink);
}
.bv-drawer__wa {
  margin-top: 28px;
  background: var(--bv-red);
  color: var(--bv-white);
  border: none;
  padding: 14px 24px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-button);
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

/* ===== Footer ===== */
.bv-footer {
  padding: 72px 24px 24px;
  border-top: 1px solid var(--bv-grey-100);
  background: var(--bv-white);
}
.bv-footer__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.bv-footer__brand img { height: 42px; margin-bottom: 24px; }
.bv-footer h4 {
  font-size: 16px;
  font-weight: var(--fw-bold);
  margin: 0 0 16px;
}
.bv-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 16px;
}
.bv-footer__list li {
  font-size: 13px;
  color: var(--fg-3);
  padding: 4px 0;
  break-inside: avoid;
  cursor: pointer;
  transition: color 150ms;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.bv-footer__list li::before {
  content: "\BB";
  color: var(--bv-red);
  font-weight: var(--fw-bold);
  flex-shrink: 0;
}
.bv-footer__list li:hover { color: var(--bv-red); }
.bv-footer__list a {
  color: inherit;
  display: block;
  flex: 1;
}

.bv-footer__contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.bv-footer__contact-row .bv-footer__lbl {
  font-size: 13px;
  font-weight: var(--fw-semibold);
}
.bv-footer__contact-row .bv-footer__val {
  font-size: 13px;
  color: var(--fg-3);
}
.bv-footer__contact-row .bv-footer__val--accent { color: var(--bv-red); }
.bv-footer__contact-row .bv-footer__icon { color: var(--bv-red); }

.bv-footer__copy {
  max-width: var(--container);
  margin: 36px auto 0;
  padding-top: 24px;
  padding-bottom: 16px;
  border-top: 1px solid var(--bv-grey-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--fg-4);
}
.bv-footer__copy a {
  color: var(--bv-ink);
  text-decoration: underline;
}
.bv-footer__legal-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--fg-4);
}
.bv-footer__legal-row a {
  color: var(--bv-ink);
  text-decoration: underline;
}
.bv-footer__legal-row a:hover { color: var(--bv-red); }
.bv-footer__legal-dot::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--bv-red);
  margin-right: 6px;
  vertical-align: middle;
}

.bv-footer__social {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.bv-footer__feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 16px;
  max-width: 280px;
}
.bv-footer__feed-cell {
  aspect-ratio: 1/1;
  background: var(--bv-grey-100) center/cover no-repeat;
  cursor: pointer;
  transition: opacity 200ms;
}
.bv-footer__feed-cell:hover { opacity: 0.8; }

/* ===== Floating dock (scroll-top + WA pill) ===== */
.bv-fdock {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: var(--z-wa);
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}
.bv-fdock > * { pointer-events: auto; }

/* # DEVMC 2026.05.18 - Igualar tamaño del scroll-up al WhatsApp FAB (56x56) */
.bv-fdock__up {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--bv-red);
  color: var(--bv-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--dur-base) var(--ease-out),
              visibility var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out),
              background var(--dur-base);
}
.bv-fdock__up.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.bv-fdock__up:hover {
  background: var(--bv-red-600);
  transform: translateY(-2px);
}

/* ===== WhatsApp pill (dentro del dock) ===== */
.bv-wa-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bv-white);
  padding: 8px 8px 8px 16px;
  border-radius: var(--r-pill);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  cursor: pointer;
  text-decoration: none;
  color: var(--bv-ink);
}
.bv-wa-pill__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.bv-wa-pill small { font-size: 11px; color: var(--fg-3); }
.bv-wa-pill strong { font-size: 13px; font-weight: var(--fw-bold); color: var(--bv-ink); }
.bv-wa-pill__ic {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bv-whatsapp);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* # DEVMC 2026.05.18 - WhatsApp FAB circular (estilo TuMundoConstructor) */
.bv-wa-fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bv-whatsapp, #25D366);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: transform 200ms ease-out, box-shadow 200ms ease-out;
}
.bv-wa-fab:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.5);
}

/* ===== Page hero (no-home) ===== */
.bv-page-hero {
  padding: 80px 24px 48px;
  background: var(--bv-grey-50);
  border-bottom: var(--border-soft);
}
.bv-page-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bv-page-hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: var(--fw-extrabold);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
}
.bv-crumbs {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-4);
}
.bv-crumbs__sep {
  color: var(--bv-red);
  margin: 0 8px;
}
