@charset "UTF-8";
/* DEVMC - 2026.04.27 - feature #bercovich-theme# "Reset, tipografia base, helpers" */

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

html {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--fg-1);
  background: var(--bv-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--fg-1);
  font-feature-settings: 'kern','ss01';
}

img { display: block; max-width: 100%; }

button { font-family: inherit; cursor: pointer; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
a:hover { color: var(--bv-red); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--fg-1);
  letter-spacing: var(--tracking-h);
  margin: 0 0 var(--sp-4);
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); font-weight: var(--fw-bold);     line-height: var(--lh-h); }
h2 { font-size: var(--fs-h2); font-weight: var(--fw-bold);     line-height: var(--lh-h); }
h3 { font-size: var(--fs-h3); font-weight: var(--fw-semibold); line-height: var(--lh-tight); }
h4 { font-size: var(--fs-h4); font-weight: var(--fw-semibold); line-height: var(--lh-tight); }

p {
  margin: 0 0 var(--sp-4);
  color: var(--fg-3);
  text-wrap: pretty;
}

small, .bv-caption { font-size: var(--fs-caption); color: var(--fg-4); }

::selection { background: var(--bv-red); color: var(--bv-white); }

:focus-visible {
  outline: 2px solid var(--bv-red);
  outline-offset: 2px;
}

.bv-eyebrow {
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  font-weight: var(--fw-medium);
  color: var(--fg-3);
  margin-bottom: 10px;
  display: inline-block;
}

.bv-eyebrow--light { color: rgba(255,255,255,0.95); }

.bv-display {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-display);
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--bv-white);
}

.bv-section-title {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 16px;
}

.bv-section-lead {
  font-size: 16px;
  color: var(--fg-3);
  line-height: 1.6;
  max-width: 560px;
}

.bv-container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.bv-section { padding: var(--section-y) var(--gutter); }

.bv-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--bv-red);
  color: var(--bv-white);
  padding: 12px 20px;
  z-index: 9999;
  font-weight: var(--fw-semibold);
}
.bv-skip-link:focus { left: 12px; top: 12px; }

.bv-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 14px 32px;
  border-radius: var(--r-pill);
  border: none;
  font-size: 13px;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-button);
  text-transform: uppercase;
  transition: all var(--dur-base) var(--ease-out);
  cursor: pointer;
}

.bv-btn--primary {
  background: var(--bv-red);
  color: var(--bv-white);
}
.bv-btn--primary:hover {
  background: var(--bv-red-600);
  color: var(--bv-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-cta);
}

.bv-btn--secondary {
  background: transparent;
  color: var(--bv-ink);
  border: 2px solid var(--bv-ink);
  padding: 12px 30px;
}
.bv-btn--secondary:hover {
  background: var(--bv-ink);
  color: var(--bv-white);
}

.bv-btn--light {
  background: var(--bv-white);
  color: var(--bv-ink);
}

.bv-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  will-change: opacity, transform;
}
.bv-reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .bv-reveal,
  .bv-reveal.in,
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
