@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/* ── Variables ──────────────────────────────── */
:root {
  --bj-primary:        #6abf57;
  --bj-primary-dark:   #52a340;

  --bj-secondary:      #c4b4a7;
  --bj-secondary-dark: #a89485;
  --bj-secondary-light:#d8ccc4;
  --bj-secondary-alpha:rgba(196,180,167,0.15);

  --bj-dark:           #030303;
  --bj-dark-2:         #1a1a1a;
  --bj-dark-3:         #2e2e2e;
  --bj-gray:           #555555;
  --bj-gray-light:     #f4f4f4;
  --bj-gray-soft:      #e8e8e8;
  --bj-white:          #ffffff;
  --bj-off-white:      #fafafa;

  --bj-font:           'Poppins', sans-serif;

  --bj-section-py:     96px;
  --bj-section-py-sm:  60px;

  --bj-radius:         16px;
  --bj-radius-sm:      8px;
  --bj-radius-lg:      24px;

  --bj-shadow:         0 8px 32px rgba(196,180,167,0.2);
  --bj-shadow-lg:      0 20px 60px rgba(3,3,3,0.18);
  --bj-shadow-card:    0 4px 24px rgba(3,3,3,0.07);

  --bj-trans:          0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--bj-font);
  color: var(--bj-dark);
  background-color: var(--bj-white);
  line-height: 1.7;
  overflow-x: hidden !important;
  font-size: 16px;
  margin: 0;
  padding: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Scroll Animation System ──────────────── */
[data-animate] {
  opacity: 0;
  transition: opacity 0.7s var(--bj-trans), transform 0.7s var(--bj-trans);
}
[data-animate="fade-up"]    { transform: translateY(36px); }
[data-animate="fade-left"]  { transform: translateX(36px); }
[data-animate="fade-right"] { transform: translateX(-36px); }
[data-animate].bj-animated  { opacity: 1; transform: none; }

/* ════════════════════════════════════════════
   BUTTONS
   ─────────────────────────────────────────────
   .bj-btn-primary  → GREEN fill
     Used: navbar "Fale conosco" + CTA section "Fale conosco"
   .bj-form-card submit → GREEN (via form-specific rule)
   .bj-btn-outline  → transparent bg, white border/text (dark BGs)
     Used: hero, por que, lojas
   .bj-btn-outline--dark → transparent bg, dark border/text (light BGs)
     Used: sobre
   ════════════════════════════════════════════ */

/* GREEN – navbar + CTA section */
.bj-btn-primary {
  background: var(--bj-primary);
  border: 2px solid var(--bj-primary);
  color: var(--bj-dark) !important;
  font-family: var(--bj-font);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  padding: 11px 26px;
  border-radius: var(--bj-radius-sm);
  transition: var(--bj-trans);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  cursor: pointer;
}
.bj-btn-primary:hover,
.bj-btn-primary:focus {
  background: var(--bj-primary-dark) !important;
  border-color: var(--bj-primary-dark) !important;
  color: var(--bj-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(106,191,87,0.28);
}

/* OUTLINE white – for dark-background sections */
.bj-btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.65);
  color: var(--bj-white) !important;
  font-family: var(--bj-font);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  padding: 11px 26px;
  border-radius: var(--bj-radius-sm);
  transition: var(--bj-trans);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  cursor: pointer;
}
.bj-btn-outline:hover,
.bj-btn-outline:focus {
  background: rgba(255,255,255,0.1) !important;
  border-color: var(--bj-white) !important;
  color: var(--bj-white) !important;
  transform: translateY(-2px);
}

/* OUTLINE dark – for light-background sections (sobre) */
.bj-btn-outline--dark {
  background: transparent;
  border: 2px solid rgba(3,3,3,0.3);
  color: var(--bj-dark) !important;
  font-family: var(--bj-font);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  padding: 11px 26px;
  border-radius: var(--bj-radius-sm);
  transition: var(--bj-trans);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  cursor: pointer;
}
.bj-btn-outline--dark:hover,
.bj-btn-outline--dark:focus {
  background: rgba(3,3,3,0.05) !important;
  border-color: rgba(3,3,3,0.6) !important;
  color: var(--bj-dark) !important;
  transform: translateY(-2px);
}

.bj-btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
}

/* ── Section Helpers ──────────────────────── */
.bj-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.bj-section-tag {
  display: inline-block;
  background: var(--bj-secondary-alpha);
  color: var(--bj-secondary-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 14px;
  border: 1px solid rgba(196,180,167,0.35);
}
.bj-section-tag--light {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.2);
}
.bj-section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--bj-dark);
  margin-bottom: 16px;
}
.bj-section-title--light { color: var(--bj-white); }
.bj-section-sub {
  font-size: 1rem;
  color: var(--bj-gray);
  max-width: 620px;
  margin: 0 auto;
}

/* ── NAVBAR ───────────────────────────────── */
.bj-navbar {
  background: transparent;
  padding: 18px 0;
  transition: background var(--bj-trans), padding var(--bj-trans), box-shadow var(--bj-trans);
  z-index: 1000;
}
.bj-navbar--scrolled {
  background: rgba(3,3,3,0.97) !important;
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  backdrop-filter: blur(12px);
}
.navbar-logo {
  height: 46px;
  width: auto;
  object-fit: contain;
}
.bj-navbar .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px !important;
  border-radius: var(--bj-radius-sm);
  transition: color var(--bj-trans), background var(--bj-trans);
  font-family: var(--bj-font);
}
.bj-navbar .nav-link:hover {
  color: var(--bj-secondary-light) !important;
  background: rgba(196,180,167,0.1);
}
.nav-cta { font-size: 0.875rem !important; }

/* Hamburger */
.bj-toggler {
  border: 2px solid rgba(255,255,255,0.4);
  background: transparent;
  padding: 7px 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  border-radius: var(--bj-radius-sm);
  outline: none;
}
.bj-toggler-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bj-white);
  border-radius: 2px;
  transition: var(--bj-trans);
  transform-origin: center;
}
.bj-toggler[aria-expanded="true"] .bj-toggler-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bj-toggler[aria-expanded="true"] .bj-toggler-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.bj-toggler[aria-expanded="true"] .bj-toggler-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.bj-navbar .navbar-collapse {
  background: rgba(3,3,3,0.98);
  border-radius: var(--bj-radius);
  padding: 16px;
  margin-top: 10px;
  box-shadow: var(--bj-shadow-lg);
}
@media (min-width: 992px) {
  .bj-navbar .navbar-collapse {
    background: transparent;
    padding: 0;
    margin-top: 0;
    box-shadow: none;
    border-radius: 0;
  }
}

/* ── HERO SECTION ─────────────────────────── */
.bj-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  overflow: hidden;
}
.bj-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.bj-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.bj-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(3,3,3,0.85) 0%,
    rgba(3,3,3,0.72) 55%,
    rgba(3,3,3,0.45) 100%
  );
}
.bj-hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 80px;
  width: 100%;
}
.bj-hero-content { color: var(--bj-white); }

.bj-badge {
  display: inline-block;
  background: rgba(196,180,167,0.15);
  border: 1px solid rgba(196,180,167,0.35);
  color: var(--bj-secondary-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 20px;
}
.bj-hero-title {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 20px;
  color: var(--bj-white);
}
.bj-hero-lead {
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  margin-bottom: 12px;
}
.bj-hero-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 28px;
}
.bj-hero-cta { margin-bottom: 36px; }

/* ── Form card ── */
.bj-hero-form-wrap { position: relative; }
.bj-form-card {
  background: var(--bj-white);
  border-radius: var(--bj-radius);
  padding: 36px 32px;
  box-shadow: var(--bj-shadow-lg);
  border-top: 4px solid var(--bj-secondary);
}
.bj-form-header { margin-bottom: 24px; text-align: center; }
.bj-form-header h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bj-dark);
  margin-bottom: 4px;
}
.bj-form-header p {
  font-size: 0.85rem;
  color: var(--bj-gray);
  margin: 0;
}
.bj-form-card .form-control,
.bj-form-card .form-select {
  font-family: var(--bj-font);
  border-radius: var(--bj-radius-sm);
  border-color: #ddd;
  font-size: 0.875rem;
  padding: 10px 14px;
  transition: border-color var(--bj-trans), box-shadow var(--bj-trans);
}
.bj-form-card .form-control:focus,
.bj-form-card .form-select:focus {
  border-color: var(--bj-secondary);
  box-shadow: 0 0 0 3px rgba(196,180,167,0.2);
}

/* GREEN — form submit only */
.bj-form-card .btn-primary,
.bj-form-card [type="submit"],
.bj-form-card .btn-custom-primary {
  background: var(--bj-primary) !important;
  border-color: var(--bj-primary) !important;
  color: var(--bj-dark) !important;
  font-family: var(--bj-font);
  font-weight: 700;
  width: 100%;
  padding: 12px;
  border-radius: var(--bj-radius-sm);
  font-size: 0.9rem;
  transition: var(--bj-trans);
}
.bj-form-card .btn-primary:hover,
.bj-form-card [type="submit"]:hover,
.bj-form-card .btn-custom-primary:hover {
  background: var(--bj-primary-dark) !important;
  border-color: var(--bj-primary-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(106,191,87,0.28);
}

/* ── PRODUTOS SECTION ─────────────────────── */
.bj-produtos {
  padding: var(--bj-section-py) 0;
  background: var(--bj-off-white);
}
.bj-produtos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.d-md-grid { display: none; }
@media (min-width: 768px) { .d-md-grid { display: grid; } }

.bj-produto-card {
  background: var(--bj-white);
  border-radius: var(--bj-radius);
  overflow: hidden;
  box-shadow: var(--bj-shadow-card);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--bj-gray-soft);
}
.bj-produto-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 5;
}
.bj-produto-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.bj-produto-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(3,3,3,0.75) 0%, rgba(3,3,3,0) 100%);
  padding: 32px 16px 14px;
  display: flex;
  flex-direction: column;
}
.bj-produto-label-title {
  color: var(--bj-white);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: lowercase;
}
.bj-produto-label-sub {
  color: rgba(255,255,255,0.75);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 3px;
}
.bj-produto-body {
  padding: 18px 16px 20px;
  flex: 1;
}
.bj-produto-num {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--bj-secondary-dark);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 5px;
}
.bj-produto-body h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bj-dark);
  margin-bottom: 7px;
  line-height: 1.35;
}
.bj-produto-body p {
  font-size: 0.76rem;
  color: var(--bj-gray);
  margin: 0;
  line-height: 1.55;
}

/* ── CAROUSEL ─────────────────────────────── */
.bj-produtos-carousel,
.bj-dep-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--bj-radius);
}
.bj-carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.bj-carousel-slide {
  min-width: 100%;
  padding: 0 4px;
}
.bj-carousel-slide .bj-produto-card,
.bj-carousel-slide .bj-dep-card { width: 100%; }

.bj-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding-bottom: 4px;
}
.bj-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--bj-gray-soft);
  border: 2px solid var(--bj-gray-soft);
  cursor: pointer;
  transition: var(--bj-trans);
  padding: 0;
}
.bj-dot--active {
  background: var(--bj-secondary);
  border-color: var(--bj-secondary);
  width: 28px;
  border-radius: 5px;
}
.bj-carousel-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}
.bj-carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--bj-secondary);
  background: var(--bj-white);
  color: var(--bj-secondary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--bj-trans);
}
.bj-carousel-btn:hover {
  background: var(--bj-secondary);
  color: var(--bj-dark);
}

/* ── POR QUÊ SECTION ──────────────────────── */
.bj-porque {
  position: relative;
  padding: var(--bj-section-py) 0;
  overflow: hidden;
}
.bj-porque-bg { position: absolute; inset: 0; z-index: 0; }
.bj-porque-bgimg { width: 100%; height: 100%; object-fit: cover; }
.bj-porque-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(3,3,3,0.95) 0%, rgba(30,30,30,0.92) 100%);
}
.bj-porque-inner { position: relative; z-index: 1; }
.bj-porque-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}
.bj-porque-lead { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 12px; }
.bj-porque-text { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin: 0; }
.bj-porque-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 52px;
}
.bj-porque-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(196,180,167,0.2);
  border-radius: var(--bj-radius);
  padding: 36px 20px;
  text-align: center;
  transition: background var(--bj-trans), transform var(--bj-trans), border-color var(--bj-trans);
  backdrop-filter: blur(6px);
}
.bj-porque-card:hover {
  background: rgba(196,180,167,0.08);
  border-color: rgba(196,180,167,0.4);
  transform: translateY(-4px);
}
.bj-porque-icon {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196,180,167,0.12);
  border-radius: 50%;
  border: 2px solid rgba(196,180,167,0.25);
}
.bj-porque-icon-fallback {
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--bj-secondary);
  font-size: 1.8rem;
}
.bj-porque-card h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bj-white);
  line-height: 1.45;
  margin: 0;
}
.bj-porque-cta { text-align: center; }

/* ── DEPOIMENTOS SECTION ──────────────────── */
.bj-depoimentos {
  padding: var(--bj-section-py) 0;
  background: var(--bj-white);
}
.bj-dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.bj-dep-card {
  background: var(--bj-off-white);
  border-radius: var(--bj-radius);
  padding: 28px 24px;
  border: 1px solid var(--bj-gray-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--bj-trans), box-shadow var(--bj-trans), border-color var(--bj-trans);
}
.bj-dep-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(196,180,167,0.18);
  border-color: rgba(196,180,167,0.4);
}
.bj-dep-stars { display: flex; gap: 3px; }
.bj-dep-stars i { color: #c4a87a; font-size: 0.875rem; }
.bj-dep-text {
  font-size: 0.9rem;
  color: var(--bj-dark-2);
  font-style: italic;
  line-height: 1.65;
  flex: 1;
  margin: 0;
}
.bj-dep-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bj-gray);
}
.bj-dep-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bj-secondary);
  color: var(--bj-dark);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bj-dep-rating {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}
.bj-dep-rating-stars { display: flex; gap: 6px; }
.bj-dep-rating-stars i { color: #c4a87a; font-size: 1.25rem; }
.bj-dep-rating p { font-size: 0.875rem; color: var(--bj-gray); margin: 0; font-weight: 500; }
.bj-dep-carousel { margin-bottom: 32px; }

/* ── LOJAS SECTION ────────────────────────── */
.bj-lojas {
  padding: var(--bj-section-py) 0;
  background: var(--bj-gray-light);
}
.bj-lojas-estados {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 52px;
}
.bj-estado-bloco {
  background: var(--bj-white);
  border-radius: var(--bj-radius);
  overflow: hidden;
  box-shadow: var(--bj-shadow-card);
  transition: transform var(--bj-trans), box-shadow var(--bj-trans);
}
.bj-estado-bloco:hover {
  transform: translateY(-4px);
  box-shadow: var(--bj-shadow);
}
.bj-estado-header {
  background: var(--bj-dark);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 3px solid var(--bj-secondary);
}
.bj-estado-header i { color: var(--bj-secondary); font-size: 1.1rem; }
.bj-estado-header h3 { color: var(--bj-white); font-size: 1rem; font-weight: 700; margin: 0; }
.bj-lojas-lista {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.bj-loja-item { display: flex; gap: 12px; align-items: flex-start; }
.bj-loja-icon {
  width: 36px; height: 36px;
  border-radius: var(--bj-radius-sm);
  background: var(--bj-secondary-alpha);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bj-loja-icon i { color: var(--bj-secondary-dark); font-size: 1rem; }
.bj-loja-info { flex: 1; }
.bj-loja-info strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--bj-dark); margin-bottom: 3px; }
.bj-loja-info p { font-size: 0.78rem; color: var(--bj-gray); margin: 0 0 4px; display: flex; align-items: flex-start; gap: 4px; line-height: 1.4; }
.bj-loja-info p i { font-size: 0.7rem; flex-shrink: 0; margin-top: 2px; }
.bj-loja-info a { font-size: 0.8rem; color: var(--bj-secondary-dark); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; transition: color var(--bj-trans); }
.bj-loja-info a:hover { color: var(--bj-secondary); }
.bj-lojas-cta { text-align: center; }

/* ── CTA SECTION ──────────────────────────── */
.bj-cta {
  position: relative;
  padding: var(--bj-section-py) 0;
  overflow: hidden;
}
.bj-cta-bg { position: absolute; inset: 0; z-index: 0; }
.bj-cta-bgimg { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.bj-cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(3,3,3,0.88) 0%, rgba(20,15,12,0.82) 100%);
}
.bj-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.bj-cta-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 14px;
}
.bj-cta-text:last-of-type { margin-bottom: 0; }

/* ── SOBRE SECTION ────────────────────────── */
.bj-sobre {
  padding: var(--bj-section-py) 0;
  background: var(--bj-white);
}
.bj-sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.bj-sobre-img-wrap { position: relative; }
.bj-sobre-img-frame {
  border-radius: var(--bj-radius-lg);
  overflow: hidden;
  box-shadow: var(--bj-shadow-lg);
}
.bj-sobre-img {
  width: 100%; height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--bj-trans);
}
.bj-sobre-img-wrap:hover .bj-sobre-img { transform: scale(1.03); }
.bj-sobre-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--bj-dark);
  border: 3px solid var(--bj-secondary);
  color: var(--bj-white);
  border-radius: var(--bj-radius);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--bj-shadow);
}
.bj-sobre-badge-year {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--bj-secondary);
  line-height: 1;
}
.bj-sobre-badge-text {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  margin-top: 2px;
}
.bj-sobre-content { padding-right: 16px; }
.bj-sobre-content p { font-size: 0.95rem; color: var(--bj-gray); margin-bottom: 16px; line-height: 1.75; }

/* ── FOOTER ───────────────────────────────── */
.bj-footer {
  background: var(--bj-dark);
  padding: 64px 0 0;
  border-top: 3px solid var(--bj-secondary);
}
.bj-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bj-footer-logo { height: 46px; width: auto; object-fit: contain; margin-bottom: 14px; }
.bj-footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.45); margin: 0; line-height: 1.6; max-width: 280px; }
.bj-footer-heading { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bj-secondary); margin-bottom: 18px; }
.bj-footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.bj-footer-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.bj-footer-list li i { color: var(--bj-secondary); font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.bj-footer-list li a { color: rgba(255,255,255,0.6); transition: color var(--bj-trans); word-break: break-all; }
.bj-footer-list li a:hover { color: var(--bj-secondary); }
.bj-footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.bj-footer-socials a {
  width: 38px; height: 38px;
  border-radius: var(--bj-radius-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  transition: background var(--bj-trans), color var(--bj-trans), border-color var(--bj-trans);
}
.bj-footer-socials a:hover {
  background: var(--bj-secondary);
  border-color: var(--bj-secondary);
  color: var(--bj-dark);
}
.bj-footer-bottom { padding: 22px 0; text-align: center; }
.bj-footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); margin: 0; }

/* ── VÍDEOS INSTITUCIONAIS ────────────────── */
.bj-videos {
  background: var(--bj-dark-2);
  padding: var(--bj-section-py) 0;
  position: relative;
  overflow: hidden;
}
.bj-videos::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(196,180,167,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.bj-videos .bj-section-tag { color: var(--bj-secondary); border-color: rgba(196,180,167,0.35); }
.bj-videos .bj-section-title { color: var(--bj-white); }
.bj-videos .bj-section-sub { color: rgba(255,255,255,0.55); }

.bj-videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  max-width: 860px;
  margin: 0 auto;
}

.bj-video-card {
  background: var(--bj-dark-3);
  border: 1px solid rgba(196,180,167,0.15);
  border-radius: var(--bj-radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(3,3,3,0.35);
  transition: transform var(--bj-trans), box-shadow var(--bj-trans), border-color var(--bj-trans);
}
.bj-video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(3,3,3,0.5);
  border-color: rgba(196,180,167,0.35);
}

.bj-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 177.78%;
  height: 0;
  overflow: hidden;
  background: var(--bj-dark);
}
.bj-video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.bj-video-info {
  padding: 20px 22px 24px;
}
.bj-video-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--bj-white);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}
.bj-video-title i {
  color: var(--bj-primary);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── Overflow prevention ─── */
.bj-hero, .bj-produtos, .bj-porque,
.bj-depoimentos, .bj-lojas, .bj-cta,
.bj-sobre, .bj-videos, .bj-footer { max-width: 100%; overflow-x: hidden; }

/* ── Custom primary (compatibility) ─── */
:root { --custom-primary: var(--bj-primary); --font-family: var(--bj-font); }
.btn-custom-primary { background-color: var(--bj-primary); border-color: var(--bj-primary); color: var(--bj-dark); font-weight: 700; }
.btn-custom-primary:hover,
.btn-custom-primary:focus,
.btn-custom-primary:active { background-color: var(--bj-primary-dark) !important; border-color: var(--bj-primary-dark) !important; color: var(--bj-dark) !important; }

/* ════════════════════════════════════════════
   RESPONSIVIDADE
   ════════════════════════════════════════════ */

@media (max-width: 1199.98px) {
  :root { --bj-section-py: 80px; }
  .bj-hero-container { grid-template-columns: 1fr 380px; gap: 40px; }
  .bj-produtos-grid { grid-template-columns: repeat(3, 1fr); }
  .bj-porque-cards { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .bj-sobre-inner { gap: 48px; }
  .bj-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .bj-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 991.98px) {
  :root { --bj-section-py: 72px; }
  .bj-hero-container { grid-template-columns: 1fr; gap: 36px; padding-top: 20px; padding-bottom: 52px; }
  .bj-hero { min-height: auto; padding-top: 80px; }
  .bj-hero-form-wrap { max-width: 520px; margin: 0 auto; width: 100%; }
  .bj-sobre-inner { grid-template-columns: 1fr; gap: 48px; display: flex; flex-direction: column; }
  .bj-sobre-img-wrap { order: -1; }
  .bj-sobre-content { padding-right: 0; order: 2; }
  .bj-sobre-badge { bottom: -14px; right: 16px; }
  .bj-lojas-estados { grid-template-columns: 1fr; gap: 18px; }
  .bj-dep-grid { grid-template-columns: repeat(2, 1fr); }
  .bj-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .bj-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 767.98px) {
  :root { --bj-section-py: 60px; }
  body { font-size: 15px; }

  .bj-produtos-grid { display: none !important; }
  .bj-produtos-carousel { display: block !important; }
  .bj-dep-grid { display: none !important; }
  .bj-dep-carousel { display: block !important; }
  .bj-carousel-slide .bj-produto-img-wrap { aspect-ratio: 3 / 4; }

  .bj-hero { padding-top: 76px; }
  .bj-hero-container { padding-top: 20px; padding-bottom: 44px; gap: 28px; grid-template-columns: 1fr !important; width: 100%; }
  .bj-hero-title { font-size: clamp(1.35rem, 5.5vw, 1.8rem); }
  .bj-hero-form-wrap { max-width: 100%; }
  .bj-form-card { padding: 26px 20px; margin: 0 10px; }

  .bj-section-header { margin-bottom: 36px; }
  .bj-section-title { font-size: clamp(1.4rem, 5vw, 1.9rem); }

  .bj-porque-cards { grid-template-columns: 1fr 1fr; gap: 14px; }
  .bj-porque-card { padding: 24px 14px; }
  .bj-porque-icon { width: 60px; height: 60px; }
  .bj-porque-icon img { width: 34px; height: 34px; }
  .bj-porque-icon-fallback { font-size: 1.4rem; }
  .bj-porque-card h3 { font-size: 0.82rem; }

  .bj-cta-text { font-size: 0.95rem; }
  .bj-lojas-estados { grid-template-columns: 1fr; }

  .bj-videos-grid { grid-template-columns: 1fr; max-width: 360px; gap: 28px; }

  .bj-sobre-inner { gap: 36px; }
  .bj-sobre-badge {
    position: static;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--bj-secondary);
    border-radius: var(--bj-radius);
    padding: 12px 18px;
  }

  .bj-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .bj-footer-brand { grid-column: auto; }
  .bj-footer { padding-top: 44px; }
  .bj-footer-socials { gap: 8px; }
  .container { padding-left: 16px; padding-right: 16px; }
}

@media (max-width: 479.98px) {
  :root { --bj-section-py: 52px; }
  .container { padding-left: 18px; padding-right: 18px; }
  .bj-navbar { padding: 12px 0; }
  .navbar-logo { height: 36px; }
  .bj-hero-title { font-size: 1.3rem; }
  .bj-hero-lead { font-size: 0.95rem; }
  .bj-porque-cards { grid-template-columns: 1fr; max-width: 300px; margin-left: auto; margin-right: auto; }
  .bj-porque-card { padding: 22px 18px; }
  .bj-videos-grid { max-width: 100%; gap: 24px; }
  .bj-btn-lg { padding: 12px 22px; font-size: 0.9rem; }
  .bj-form-card { padding: 22px 14px; }
  .bj-dep-card { padding: 20px 16px; }
  .bj-footer { padding-top: 40px; }
}
