/* ═══════════════════════════════════════════════════════════════
   A+ BOUTIQUE — home-custom.css
   Estilos premium para as seções da homepage (entre header e footer)
   Prefixo bp- (boutique premium) para evitar conflitos com o tema
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

/* ── VARIÁVEIS — Paleta Oficial do Cliente ── */
:root {
  /* Cores da marca */
  --bp-petrol:      #06465E;          /* Azul Petróleo — Pantone 111-16 C */
  --bp-petrol-lo:   #191F39;  /* petróleo baixa opacidade (marcas em repouso) */
  --bp-petrol-md:   #191F39;
  --bp-navy:        #191F39;          /* Azul Marinho — Pantone BLACK 7 C */
  --bp-navy-2:      #252C4A;
  --bp-gray:        #191F39;          /* Cinza — Pantone 178-9 C */
  --bp-cream:       #EFE3C9;          /* Creme — Pantone 8-1 C */
  --bp-cream-2:     #E5D6B0;          /* creme mais escuro */
  --bp-cream-3:     #FAF7F1;          /* creme claro para cards */

  /* Aliases semânticos */
  --bp-bg-1:        var(--bp-cream-3);   /* fundo primário */
  --bp-bg-2:        var(--bp-cream);     /* fundo alternado */
  --bp-bg-dark:     var(--bp-navy);      /* fundo escuro (CTA final) */
  --bp-text:        var(--bp-navy);
  --bp-text-muted:  var(--bp-gray);
  --bp-accent:      var(--bp-petrol);
  --bp-accent-lo:   var(--bp-petrol-lo);

  --bp-serif: 'Cormorant Garamond', serif;
  --bp-sans:  'Montserrat', sans-serif;
}

/* ── UTILITÁRIOS ── */
.bp-section-label {
  font-family: var(--bp-sans);
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--bp-petrol-lo);          /* baixa opacidade em repouso */
  display: block; margin-bottom: 1rem;
  transition: color 0.4s;
}
.bp-section-label:hover,
*:hover > .bp-section-label { color: var(--bp-petrol); }
.bp-section-header {
  text-align: center; max-width: 700px; margin: 0 auto 4rem;
}
.bp-section-header h2 {
  font-family: var(--bp-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300; line-height: 1.25; color: var(--bp-navy);
}
.bp-section-header h2 em { font-style: italic; color: var(--bp-petrol); }
.bp-section-header p {
  margin-top: 1rem; font-family: var(--bp-sans);
  font-size: 0.88rem; font-weight: 300; line-height: 2;
  color: var(--bp-gray);
}

/* Botões */
.bp-btn-primary {
  font-family: var(--bp-sans); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bp-cream); background: var(--bp-petrol);
  padding: 1rem 2.5rem; text-decoration: none;
  transition: all 0.3s; display: inline-block; border: none; cursor: pointer;
  border-radius: 4px;
}
.bp-btn-primary:hover { background: var(--bp-navy); color: var(--bp-cream); }
.bp-btn-secondary {
  font-family: var(--bp-sans); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bp-gray); background: transparent;
  border: 1px solid var(--bp-petrol-lo);
  padding: 1rem 2.5rem; text-decoration: none;
  transition: all 0.3s; display: inline-block; cursor: pointer;
  border-radius: 4px;
}
.bp-btn-secondary:hover { border-color: var(--bp-petrol); color: var(--bp-petrol); }
.bp-btn-whatsapp {
  font-family: var(--bp-sans); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: #fff; background: #25D366; padding: 1rem 2rem;
  text-decoration: none; display: inline-flex;
  align-items: center; gap: 0.6rem; border: none; cursor: pointer;
  transition: background 0.3s; border-radius: 4px;
}
.bp-btn-whatsapp:hover { background: #1fba58; color: #fff; }

/* Reveal animation */
.bp-reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s, transform 0.8s;
}
.bp-reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════
   1. LANÇAMENTOS EM DESTAQUE
   ═══════════════════════════════ */
.bp-lancamentos {
  padding: 7rem 4rem;
  background: var(--bp-bg-1);
}
.bp-lancamentos-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  max-width: 1300px; margin: 0 auto 4rem;
}
.bp-lancamentos-header h2 {
  font-family: var(--bp-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300; line-height: 1.2; color: var(--bp-navy);
}
.bp-lancamentos-header h2 em { font-style: italic; color: var(--bp-petrol); }
.bp-lancamentos-header p {
  font-family: var(--bp-sans); font-size: 0.72rem; font-weight: 300;
  line-height: 1.9; color: var(--bp-gray); max-width: 360px; text-align: right;
}

/* Grid com gap e border-radius */
.bp-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1300px; margin: 0 auto;
  background: transparent;
}
.bp-card {
  background: var(--bp-navy); position: relative;
  overflow: hidden; cursor: pointer;
  aspect-ratio: 3/4;
  display: flex; flex-direction: column; justify-content: flex-end;
  text-decoration: none;
  border-radius: 20px;         /* ← ARREDONDADO */
}
.bp-card-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.7s ease;
  border-radius: 20px;
}
.bp-card:hover .bp-card-img { transform: scale(1.05); }
.bp-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(25,31,57,0.95) 30%, rgba(25,31,57,0.4) 65%, rgba(25,31,57,0.1) 100%);
  border-radius: 20px;
}
.bp-card-arrow {
  position: absolute; top: 1.5rem; right: 1.5rem; z-index: 3;
  width: 36px; height: 36px;
  border: 1px solid rgba(239,227,201,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--bp-cream); font-size: 1rem;
  opacity: 0; transform: translate(5px,-5px);
  transition: all 0.4s;
}
.bp-card:hover .bp-card-arrow { opacity: 1; transform: translate(0,0); }
.bp-card-body {
  position: relative; z-index: 2; padding: 2rem;
}
.bp-card-bairro {
  font-family: var(--bp-sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(239,227,201,0.6);
  margin-bottom: 0.8rem;
  transition: color 0.3s;
}
.bp-card:hover .bp-card-bairro { color: var(--bp-cream); }
.bp-card-nome {
  font-family: var(--bp-serif); font-size: 1.75rem; font-weight: 300;
  color: var(--bp-cream-3); line-height: 1.2; margin-bottom: 1.5rem;
}
.bp-card-specs {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  border-top: 0.5px solid rgba(239,227,201,0.15);
  padding-top: 1.25rem;
}
.bp-card-spec {
  font-family: var(--bp-sans); font-size: 0.78rem; font-weight: 400; 
  color: rgba(239,227,201,0.65); display: flex; align-items: center; gap: 0.5rem;
  transition: color 0.3s;
}
.bp-card:hover .bp-card-spec { color: rgba(239,227,201,0.9); }
.bp-card-spec i { color: var(--bp-cream); opacity: 0.5; font-size: 0.85rem; transition: opacity 0.3s; }
.bp-card:hover .bp-card-spec i { opacity: 1; }
.bp-card-spec span { color: var(--bp-cream-3); font-weight: 500; font-size: 1rem; }

/* Card horizontal (destaque) */
.bp-card-horizontal {
  grid-column: span 2; aspect-ratio: auto; min-height: 420px;
}

.bp-ver-mais {
  text-align: center; margin-top: 3rem;
}
.bp-ver-mais a {
  font-family: var(--bp-sans); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bp-petrol-md); background: transparent;
  border: 1px solid var(--bp-petrol-lo);
  padding: 1rem 2.5rem; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.75rem;
  transition: all 0.3s; border-radius: 4px;
}
.bp-ver-mais a:hover { border-color: var(--bp-petrol); color: var(--bp-petrol); }

/* ═══════════════════════════════
   2. POR QUE COMPRAR
   ═══════════════════════════════ */
.bp-comprar {
  padding: 7rem 4rem;
  background: var(--bp-cream);
}
.bp-comprar-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
  align-items: center; max-width: 1300px; margin: 0 auto;
}
.bp-comprar-images {
  position: relative; height: 520px;
}
.bp-img-principal {
  position: absolute; top: 0; left: 0;
  width: 78%; height: 85%;
  object-fit: cover; display: block;
  border-radius: 16px;
}
.bp-img-sobreposta {
  position: absolute; bottom: 0; right: 0;
  width: 55%; height: 55%;
  object-fit: cover; display: block;
  border: 4px solid var(--bp-cream);
  border-radius: 16px;
}
.bp-comprar-label {
  font-family: var(--bp-sans); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--bp-petrol-lo);
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
  transition: color 0.4s;
}
.bp-comprar-label:hover { color: var(--bp-petrol); }
.bp-comprar-label::after {
  content: ''; flex: 1; height: 0.5px;
  background: linear-gradient(to right, var(--bp-petrol-lo), transparent);
}
.bp-comprar-texto h2 {
  font-family: var(--bp-serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300; line-height: 1.25; color: var(--bp-navy);
  margin-bottom: 1.25rem;
}
.bp-comprar-texto h2 em { font-style: italic; color: var(--bp-petrol); }
.bp-comprar-desc {
  font-family: var(--bp-sans); font-size: 0.78rem; font-weight: 300;
  line-height: 2; color: var(--bp-gray); margin-bottom: 2.5rem;
}
.bp-beneficios {
  list-style: none; display: flex; flex-direction: column; gap: 0;
}
.bp-beneficio {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 0.5px solid rgba(6,70,94,0.1);
}
.bp-beneficio:last-child { border-bottom: none; }
.bp-beneficio-num {
  font-family: var(--bp-serif); font-size: 2.5rem; font-weight: 300;
  color: var(--bp-petrol); opacity: 0.15; line-height: 1; min-width: 48px;
  transition: opacity 0.4s;
}
.bp-beneficio:hover .bp-beneficio-num { opacity: 0.6; }
.bp-beneficio h4 {
  font-family: var(--bp-serif); font-size: 1.1rem; font-weight: 400;
  color: var(--bp-navy); margin-bottom: 0.5rem; line-height: 1.3;
}
.bp-beneficio p {
  font-family: var(--bp-sans); font-size: 0.72rem; font-weight: 300;
  line-height: 1.9; color: var(--bp-gray);
}

/* ═══════════════════════════════
   3. PARCEIROS
   ═══════════════════════════════ */
.bp-parceiros {
  padding: 6rem 4rem;
  background: var(--bp-bg-1);
  border-top: 0.5px solid rgba(6,70,94,0.08);
  border-bottom: 0.5px solid rgba(6,70,94,0.08);
}
.bp-parceiros-top {
  max-width: 1300px; margin: 0 auto 4rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end;
}
.bp-parceiros-top h2 {
  font-family: var(--bp-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 300; line-height: 1.3; color: var(--bp-navy);
}
.bp-parceiros-top h2 em { font-style: italic; color: var(--bp-petrol); }
.bp-parceiros-top p {
  font-family: var(--bp-sans); font-size: 0.95rem; font-weight: 300;
  line-height: 2; color: var(--bp-gray);
}

/* Carrossel */
.bp-carousel-wrap {
  max-width: 1300px; margin: 0 auto;
  position: relative; overflow: hidden;
}
.bp-fade-left,
.bp-fade-right {
  position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
  pointer-events: none;
}
.bp-fade-left  { left: 0;  background: linear-gradient(to right, var(--bp-bg-1), transparent); }
.bp-fade-right { right: 0; background: linear-gradient(to left,  var(--bp-bg-1), transparent); }

.bp-carousel-track {
  display: flex; align-items: center; gap: 0;
  animation: bp-scroll 28s linear infinite;
  width: max-content;
}
.bp-carousel-wrap:hover .bp-carousel-track { animation-play-state: paused; }

/* Logos em baixa opacidade (petróleo) → cor total no hover */
.bp-logo-item {
  padding: 1.5rem 3rem;
  border-right: 0.5px solid rgba(6,70,94,0.06);
  display: flex; align-items: center;
  filter: grayscale(100%) brightness(0.3) sepia(100%) hue-rotate(160deg) saturate(200%);
  opacity: 0.2;
  transition: opacity 0.4s, filter 0.4s;
}
.bp-logo-item:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
}
.bp-logo-item img { height: 40px; width: auto; max-width: 130px; object-fit: contain; }

@keyframes bp-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════
   4. DEPOIMENTOS
   ═══════════════════════════════ */
.bp-depoimentos {
  padding: 7rem 4rem;
  background: var(--bp-cream);
}
.bp-dep-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 1300px; margin: 0 auto;
}
.bp-dep-card {
  background: var(--bp-cream-3); padding: 2.5rem 2rem;
  transition: background 0.4s, box-shadow 0.4s;
  position: relative; overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(6,70,94,0.06);
}
.bp-dep-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--bp-petrol);
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s;
  border-radius: 0 0 16px 16px;
}
.bp-dep-card:hover { background: #fff; box-shadow: 0 8px 32px rgba(6,70,94,0.08); }
.bp-dep-card:hover::before { transform: scaleX(1); }
.bp-dep-stars { color: var(--bp-petrol); opacity: 0.3; letter-spacing: 0.15em; font-size: 0.75rem; margin-bottom: 1.25rem; transition: opacity 0.4s; }
.bp-dep-card:hover .bp-dep-stars { opacity: 1; }
.bp-dep-text {
  font-family: var(--bp-serif); font-size: 1rem; font-style: italic;
  font-weight: 300; line-height: 1.85; color: var(--bp-navy);
  margin-bottom: 1.5rem;
}
.bp-dep-text::before { content: '\201C'; color: var(--bp-petrol); opacity: 0.3; transition: opacity 0.4s; }
.bp-dep-text::after  { content: '\201D'; color: var(--bp-petrol); opacity: 0.3; transition: opacity 0.4s; }
.bp-dep-card:hover .bp-dep-text::before,
.bp-dep-card:hover .bp-dep-text::after { opacity: 0.7; }
.bp-dep-author { display: flex; align-items: center; gap: 1rem; }
.bp-dep-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bp-cream-2); display: flex;
  align-items: center; justify-content: center;
  font-family: var(--bp-serif); font-size: 1.1rem; color: var(--bp-petrol);
  opacity: 0.4; border: 1px solid rgba(6,70,94,0.15); flex-shrink: 0;
  transition: opacity 0.4s;
}
.bp-dep-card:hover .bp-dep-avatar { opacity: 1; }
.bp-dep-name {
  font-family: var(--bp-sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.08em; color: var(--bp-navy); display: block;
}
.bp-dep-emp {
  font-family: var(--bp-sans); font-size: 0.62rem; color: var(--bp-gray);
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════
   5. SIMULADOR
   ═══════════════════════════════ */
.bp-simulador {
  padding: 7rem 4rem;
  background: var(--bp-bg-1);
}
.bp-sim-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
  align-items: start; max-width: 1300px; margin: 0 auto;
}
.bp-sim-left h2 {
  font-family: var(--bp-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300; line-height: 1.25; color: var(--bp-navy); margin-bottom: 1.5rem;
}
.bp-sim-left h2 em { font-style: italic; color: var(--bp-petrol); }
.bp-sim-left p {
  font-family: var(--bp-sans); font-size: 0.78rem; font-weight: 300;
  line-height: 2; color: var(--bp-gray);
}
.bp-sim-form {
  background: #fff;
  border: 1px solid rgba(6,70,94,0.1);
  padding: 2.5rem; border-radius: 16px;
  box-shadow: 0 4px 24px rgba(6,70,94,0.05);
}
.bp-sim-field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.bp-sim-field label {
  font-family: var(--bp-sans); font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--bp-gray);
}
.bp-sim-field input {
  background: var(--bp-cream-3); border: 1px solid rgba(6,70,94,0.1);
  color: var(--bp-navy); font-family: var(--bp-sans); font-size: 0.85rem;
  font-weight: 300; padding: 0.9rem 1rem; outline: none;
  transition: border-color 0.3s; width: 100%; border-radius: 8px;
}
.bp-sim-field input:focus { border-color: var(--bp-petrol); }
.bp-sim-field input::placeholder { color: rgba(122,120,107,0.4); }
.bp-sim-results {
  background: var(--bp-cream); border: 1px solid rgba(6,70,94,0.1);
  padding: 1.5rem; margin-top: 1.5rem; display: none; border-radius: 12px;
}
.bp-sim-results.active { display: block; }
.bp-sim-res-label {
  font-family: var(--bp-sans); font-size: 0.58rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--bp-petrol); opacity: 0.5; margin-bottom: 1rem;
}
.bp-sim-res-value {
  font-family: var(--bp-serif); font-size: 2.5rem; font-weight: 300;
  color: var(--bp-navy); line-height: 1; margin-bottom: 1.5rem;
}
.bp-sim-row {
  display: flex; justify-content: space-between;
  padding: 0.6rem 0; border-bottom: 0.5px solid rgba(6,70,94,0.07);
  font-family: var(--bp-sans);
}
.bp-sim-row:last-child { border-bottom: none; }
.bp-sim-row span:first-child { font-size: 0.68rem; color: var(--bp-gray); }
.bp-sim-row span:last-child  { font-size: 0.72rem; color: var(--bp-navy); font-weight: 500; }
.bp-sim-cta { margin-top: 1.5rem; }

/* ═══════════════════════════════
   6. BLOG / NOTÍCIAS
   ═══════════════════════════════ */
.bp-noticias {
  padding: 7rem 4rem;
  background: var(--bp-cream);
}
.bp-noticias-container { max-width: 1300px; margin: 0 auto; }

.bp-noticias #news-cards,
.bp-noticias .cards__grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
  margin-top: 0;
}

.bp-noticias .news-card,
.bp-noticias .card-noticia {
  background: var(--bp-cream-3) !important;
  border: 1px solid rgba(6,70,94,0.07) !important;
  border-radius: 16px !important;
  overflow: hidden;
  transition: box-shadow 0.4s, transform 0.4s !important;
}
.bp-noticias .news-card:hover {
  box-shadow: 0 8px 32px rgba(6,70,94,0.1) !important;
  transform: translateY(-4px) !important;
}
.bp-noticias .news-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.bp-noticias .news-card-body { padding: 1.5rem; }
.bp-noticias .news-card h3,
.bp-noticias .news-card-title {
  font-family: var(--bp-serif) !important;
  font-size: 1.1rem !important; font-weight: 400 !important;
  color: var(--bp-navy) !important; line-height: 1.4 !important;
  margin-bottom: 0.75rem !important;
}
.bp-noticias .news-card p,
.bp-noticias .news-card-excerpt {
  font-family: var(--bp-sans) !important;
  font-size: 0.72rem !important; font-weight: 300 !important;
  line-height: 1.9 !important; color: var(--bp-gray) !important;
}
.bp-noticias .news-card a { text-decoration: none; color: inherit; }
.bp-noticias .news-card-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--bp-sans) !important; font-size: 0.6rem !important;
  font-weight: 600 !important; letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: var(--bp-petrol-md) !important; margin-top: 1rem !important;
  text-decoration: none !important; transition: color 0.3s !important;
}
.bp-noticias .news-card-link:hover { color: var(--bp-petrol) !important; }

.bp-btn-leia-mais { text-align: center; margin-top: 3rem; }
.bp-btn-leia-mais button,
#btn-leia-mais {
  font-family: var(--bp-sans) !important; font-size: 0.65rem !important;
  font-weight: 500 !important; letter-spacing: 0.2em !important;
  text-transform: uppercase !important; color: var(--bp-petrol-md) !important;
  background: transparent !important;
  border: 1px solid var(--bp-petrol-lo) !important;
  padding: 1rem 2.5rem !important; cursor: pointer !important;
  transition: all 0.3s !important; border-radius: 4px !important;
}
.bp-btn-leia-mais button:hover,
#btn-leia-mais:hover {
  border-color: var(--bp-petrol) !important;
  color: var(--bp-petrol) !important;
}

/* ───────────────────────────────────────────────────────────
   INDICADORES DE MERCADO — dentro de .bp-noticias
   Paleta: #191F39 (navy) · #06465E (petrol) · #EFE3C9 (cream)
   ─────────────────────────────────────────────────────────── */

/* Variáveis de tendência */
:root {
  --bpm-alta   : #2e8b6a;
  --bpm-baixa  : #c0392b;
  --bpm-neutro : #7A786B;
}

/* ── Ticker ─────────────────────────────────────────────── */
.bpm-ticker {
  background    : #191F39;
  border-radius : 12px;
  overflow      : hidden;
  padding       : 14px 0;
  margin-bottom : 40px;
  position      : relative;
}

.bpm-ticker::before,
.bpm-ticker::after {
  content        : '';
  position       : absolute;
  top            : 0; bottom: 0;
  width          : 80px;
  z-index        : 2;
  pointer-events : none;
}
.bpm-ticker::before {
  left       : 0;
  background : linear-gradient(to right, #191F39, transparent);
}
.bpm-ticker::after {
  right      : 0;
  background : linear-gradient(to left, #191F39, transparent);
}

.bpm-ticker-track {
  display   : flex;
  align-items: center;
  width     : max-content;
  animation : bpmTickerScroll 38s linear infinite;
}
.bpm-ticker-track:hover { animation-play-state: paused; }

@keyframes bpmTickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.bpm-ticker-item {
  display     : flex;
  align-items : center;
  gap         : 10px;
  padding     : 0 28px;
  border-right: 1px solid rgba(239,227,201,0.12);
  white-space : nowrap;
}

.bpm-ticker-icone {
  color     : rgba(239,227,201,0.35);
  font-size : 12px;
}

.bpm-ticker-titulo {
  font-size      : 10px;
  font-weight    : 700;
  letter-spacing : 1.2px;
  text-transform : uppercase;
  color          : #EFE3C9;
}

.bpm-ticker-valor {
  font-size   : 13px;
  font-weight : 800;
}

.bpm-ticker-sep {
  color     : rgba(239,227,201,0.15);
  font-size : 16px;
}

/* ── Cards ──────────────────────────────────────────────── */
.bpm-cards-section { margin-bottom: 40px; }

.bpm-cards-nav {
  display         : flex;
  align-items     : center;
  justify-content : space-between;
  margin-bottom   : 20px;
}

.bpm-cards-titulo {
  font-size      : 11px;
  font-weight    : 700;
  letter-spacing : 2px;
  text-transform : uppercase;
  color          : var(--bp-gray);
  margin         : 0;
}

.bpm-nav-btns { display: flex; gap: 10px; }

.bpm-nav-btn {
  display         : flex;
  align-items     : center;
  justify-content : center;
  width           : 38px;
  height          : 38px;
  background      : transparent;
  border          : 1px solid rgba(6,70,94,0.2);
  border-radius   : 50%;
  color           : #06465E;
  font-size       : 13px;
  cursor          : pointer;
  transition      : background 0.25s, border-color 0.25s, transform 0.2s;
}
.bpm-nav-btn:hover:not(:disabled) {
  background   : #06465E;
  border-color : #06465E;
  color        : #EFE3C9;
  transform    : scale(1.05);
}
.bpm-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }

.bpm-cards-container { overflow: hidden; }

.bpm-cards-wrap {
  display    : flex;
  gap        : 20px;
  transition : transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Card individual — fundo claro (contexto creme) */
.bpm-card {
  flex          : 0 0 calc((100% - 40px) / 3);
  min-width     : 0;
  background    : #ffffff;
  border        : 1px solid rgba(6,70,94,0.09);
  border-radius : 14px;
  padding       : 26px 22px 22px;
  display       : flex;
  flex-direction: column;
  gap           : 8px;
  transition    : box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  cursor        : default;
}
.bpm-card:hover {
  box-shadow   : 0 8px 28px rgba(6,70,94,0.1);
  transform    : translateY(-3px);
  border-color : rgba(6,70,94,0.18);
}

.bpm-card__topo {
  display         : flex;
  align-items     : center;
  justify-content : space-between;
}

.bpm-card__icone-wrap {
  display         : flex;
  align-items     : center;
  justify-content : center;
  width           : 38px;
  height          : 38px;
  background      : rgba(6,70,94,0.07);
  border-radius   : 9px;
  color           : #06465E;
  font-size       : 15px;
}

.bpm-card__tendencia  { font-size: 16px; }
.bpm-card--alta   .bpm-card__tendencia { color: var(--bpm-alta);   }
.bpm-card--baixa  .bpm-card__tendencia { color: var(--bpm-baixa);  }
.bpm-card--neutro .bpm-card__tendencia { color: var(--bpm-neutro); }

.bpm-card__titulo {
  font-size      : 9px;
  font-weight    : 700;
  letter-spacing : 1.4px;
  text-transform : uppercase;
  color          : var(--bp-gray);
  margin         : 6px 0 0;
}

.bpm-card__valor {
  font-size   : 34px;
  font-weight : 800;
  line-height : 1;
  color       : #191F39;
  font-family : Georgia, 'Times New Roman', serif;
}
.bpm-card--alta  .bpm-card__valor { color: var(--bpm-alta);  }
.bpm-card--baixa .bpm-card__valor { color: var(--bpm-baixa); }

.bpm-card__descricao {
  font-size   : 11px;
  color       : var(--bp-gray);
  line-height : 1.6;
  margin      : 0;
  flex        : 1;
}

.bpm-card__rodape {
  margin-top  : 10px;
  padding-top : 10px;
  border-top  : 1px solid rgba(6,70,94,0.07);
}

.bpm-card__periodo {
  font-size      : 9px;
  font-weight    : 600;
  letter-spacing : 1px;
  text-transform : uppercase;
  color          : rgba(122,120,107,0.6);
}

/* Dots */
.bpm-dots {
  display         : flex;
  justify-content : center;
  gap             : 8px;
  margin-top      : 24px;
}

.bpm-dot {
  width         : 7px;
  height        : 7px;
  border-radius : 50%;
  background    : rgba(6,70,94,0.18);
  border        : none;
  cursor        : pointer;
  transition    : background 0.25s, transform 0.2s;
  padding       : 0;
}
.bpm-dot--ativo {
  background : #06465E;
  transform  : scale(1.3);
}

/* Fonte */
.bpm-fonte {
  text-align : center;
  margin-top : 18px;
}
.bpm-fonte a {
  font-size      : 10px;
  color          : #efe3c9;
  text-decoration: none;
  letter-spacing : 0.5px;
  transition     : color 0.2s;
}
.bpm-fonte a:hover { color: #06465E; }

/* Divisor entre indicadores e blog */
.bpm-divisor {
  border     : none;
  border-top : 1px solid rgba(6,70,94,0.08);
  margin     : 48px 0;
}

/* ── Responsivo ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .bpm-card { flex: 0 0 calc((100% - 20px) / 2); }
}
@media (max-width: 768px) {
  .bpm-card { flex: 0 0 calc((100% - 20px) / 2); }
  .bpm-card__valor { font-size: 26px; }
}
@media (max-width: 480px) {
  .bpm-card { flex: 0 0 100%; }
  .bpm-card__valor { font-size: 30px; }
  .bpm-ticker-item { padding: 0 18px; }
}

/* ═══════════════════════════════
   7. CTA FINAL
   ═══════════════════════════════ */
.bp-cta-final {
  padding: 9rem 4rem; text-align: center;
  position: relative; overflow: hidden;
  background: var(--bp-navy);
}
.bp-cta-final::before {
  content: 'A+'; font-family: var(--bp-serif);
  font-size: 30vw; font-weight: 300;
  color: var(--bp-petrol); opacity: 0.08;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1; pointer-events: none; white-space: nowrap;
}
.bp-cta-inner {
  position: relative; z-index: 1;
  max-width: 750px; margin: 0 auto;
}
.bp-cta-final .bp-section-label { color: rgba(239,227,201,0.3); }
.bp-cta-final h2 {
  font-family: var(--bp-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300; line-height: 1.2; color: var(--bp-cream); margin-bottom: 1.5rem;
}
.bp-cta-final h2 em { font-style: italic; color: rgba(239,227,201,0.7); }
.bp-cta-final p {
  font-family: var(--bp-sans); font-size: 0.88rem; font-weight: 300;
  line-height: 2; color: #EFE3C9; max-width: 550px; margin: 0 auto 3rem;
}
.bp-cta-final .bp-btn-secondary {
  color: rgba(239,227,201,0.5);
  border-color: rgba(239,227,201,0.15);
}
.bp-cta-final .bp-btn-secondary:hover {
  color: var(--bp-cream);
  border-color: rgba(239,227,201,0.5);
}
.bp-cta-group {
  display: flex; gap: 1.25rem; justify-content: center;
  align-items: center; flex-wrap: wrap;
}

/* ── NÚMEROS ── */
.bp-numeros { padding: 0; background: var(--bp-cream); }
.bp-numeros-inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 0.5px solid rgba(6,70,94,0.1);
  border-bottom: 0.5px solid rgba(6,70,94,0.1);
}
.bp-num-item {
  text-align: center; padding: 3.5rem 2rem;
  border-right: 0.5px solid rgba(6,70,94,0.08);
  transition: background 0.3s;
}
.bp-num-item:last-child { border-right: none; }
.bp-num-item:hover { background: rgba(6,70,94,0.03); }
.bp-num-value {
  font-family: var(--bp-serif);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 300; color: var(--bp-petrol); opacity: 0.25;
  line-height: 1; margin-bottom: 0.75rem;
  transition: opacity 0.4s;
}
.bp-num-item:hover .bp-num-value { opacity: 0.9; }
.bp-num-label {
  font-family: var(--bp-sans); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--bp-gray);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .bp-dep-grid  { grid-template-columns: 1fr 1fr; }
  .bp-sim-inner { grid-template-columns: 1fr; gap: 3rem; }
  .bp-parceiros-top { grid-template-columns: 1fr; gap: 2rem; }
  .bp-numeros-inner { grid-template-columns: 1fr 1fr; }
  .bp-num-item:nth-child(2) { border-right: none; }
}
@media (max-width: 768px) {
  .bp-lancamentos,
  .bp-comprar,
  .bp-parceiros,
  .bp-depoimentos,
  .bp-simulador,
  .bp-noticias,
  .bp-cta-final  { padding: 5rem 1.5rem; }

  .bp-lancamentos-header { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
  .bp-lancamentos-header p { text-align: left; max-width: 100%; }

  .bp-cards-grid { grid-template-columns: 1fr; gap: 16px; }
  .bp-card { aspect-ratio: 4/3; }
  .bp-card-horizontal { grid-column: span 1; min-height: auto; }

  .bp-comprar-inner { grid-template-columns: 1fr; gap: 3rem; }
  .bp-comprar-images { height: 280px; }

  .bp-dep-grid { grid-template-columns: 1fr; }

  .bp-noticias #news-cards,
  .bp-noticias .cards__grid { grid-template-columns: 1fr !important; gap: 16px !important; }

  .bp-cta-group { flex-direction: column; }

  .bp-numeros-inner { grid-template-columns: 1fr 1fr; }
}

/* Link "Ver mais" noticias → abrainc.org.br */
.bp-btn-leia-mais-link {
  font-family: var(--bp-sans); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bp-petrol-md); background: transparent;
  border: 1px solid var(--bp-petrol-lo);
  padding: 1rem 2.5rem; cursor: pointer;
  transition: all 0.3s; border-radius: 4px;
  text-decoration: none; display: inline-block;
}
.bp-btn-leia-mais-link:hover {
  border-color: #EFE3C9;
  color: #EFE3C9;
  background-color: #191F39;
}

/* ═══════════════════════════════════════════════════════
   CORREÇÕES VISUAIS — Textos, Logos, Card em breve, Modal
   ═══════════════════════════════════════════════════════ */

/* 1. TEXTOS — Cor sólida #06465E (sem baixa opacidade) */
.bp-section-label {
  color: #2B90B5 !important;
  opacity: 1 !important;
}
.bp-card-bairro {
  color: rgba(239,227,201,0.75) !important;   /* levemente legível sobre foto */
}
.bp-card:hover .bp-card-bairro { color: var(--bp-cream) !important; }
.bp-comprar-label { color: #06465E !important; opacity: 1 !important; }
.bp-num-value { opacity: 1 !important; color: #06465E !important; }
.bp-dep-stars { opacity: 1 !important; color: #06465E !important; }
.bp-dep-text::before,
.bp-dep-text::after  { opacity: 0.5 !important; color: #06465E !important; }
.bp-dep-avatar { opacity: 1 !important; color: #06465E !important; }
.bp-sim-res-label { opacity: 1 !important; color: #06465E !important; }
.bp-ver-mais a { color: #06465E !important; }
.bp-parceiros-label { color: #06465E !important; }

/* 2. LOGOS DAS CONSTRUTORAS — sem mancha, só transparência */
.bp-logo-item {
  padding: 1rem 2.5rem;
  border-right: none;
  display: flex; align-items: center;
  /* Remove o filtro marrom/acinzentado antigo */
  filter: none;
  opacity: 1;
  transition: transform 0.4s;
}
.bp-logo-item img {
  height: 36px; width: auto; max-width: 130px; object-fit: contain;
  /*
   * PNGs com fundo transparente:
   * mix-blend-mode: multiply elimina qualquer fundo branco residual
   * opacity baixa = logo suave em repouso, cor real no hover
   */
  mix-blend-mode: multiply;
  opacity: 0.28;
  transition: opacity 0.45s, transform 0.4s;
}
.bp-logo-item:hover {
  transform: scale(1.08);
}
.bp-logo-item:hover img {
  opacity: 1;
  mix-blend-mode: multiply; /* mantém para eliminar fundo branco mesmo no hover */
}

/* 3. CARD "EM BREVE" — clicável com CTA */
.bp-card-embreve {
  /* Ocupa as 3 colunas como faixa horizontal — sem buraco no grid */
  grid-column: 1 / -1;
  aspect-ratio: auto !important;
  min-height: 140px;
  cursor: pointer;
  background: var(--bp-cream-2);
  border: 1.5px dashed rgba(6,70,94,0.18);
  border-radius: 20px;
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.bp-card-embreve:hover {
  background: var(--bp-cream);
  border-color: rgba(6,70,94,0.45);
  box-shadow: 0 6px 24px rgba(6,70,94,0.07);
}
.bp-embreve-bg { display: none; }
.bp-embreve-body {
  /* Layout horizontal: ícone | texto | botão */
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  height: 100% !important;
  gap: 3rem;
  padding: 2.5rem 4rem !important;
  flex-wrap: wrap;
}
.bp-embreve-icon {
  font-family: var(--bp-serif); font-size: 2.5rem; font-weight: 300;
  color: #06465E; opacity: 0.18; line-height: 1;
  transition: opacity 0.4s; flex-shrink: 0;
}
.bp-card-embreve:hover .bp-embreve-icon { opacity: 0.7; }
.bp-embreve-titulo {
  font-family: var(--bp-serif); font-size: 1.25rem; font-weight: 300;
  color: var(--bp-navy); line-height: 1.45;
}
.bp-embreve-cta {
  font-family: var(--bp-sans); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #06465E; opacity: 0.35;
  border: 1px solid rgba(6,70,94,0.2);
  padding: 0.75rem 2rem; border-radius: 4px;
  transition: opacity 0.4s, border-color 0.4s, background 0.4s;
  flex-shrink: 0; white-space: nowrap;
}
.bp-card-embreve:hover .bp-embreve-cta {
  opacity: 1; border-color: #06465E;
  background: rgba(6,70,94,0.04);
}

/* Mobile: volta para coluna única */
@media (max-width: 768px) {
  .bp-card-embreve { grid-column: 1; min-height: 180px; }
  .bp-embreve-body {
    flex-direction: column !important;
    gap: 1.25rem; padding: 2rem !important;
  }
}

/* 4. MODAL */
.bp-modal-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(25,31,57,0.65);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  animation: bp-fade-in 0.3s ease;
}
@keyframes bp-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.bp-modal-box {
  background: var(--bp-cream-3);
  border: 1px solid rgba(6,70,94,0.1);
  border-radius: 20px;
  padding: 2.5rem;
  width: 100%; max-width: 480px;
  position: relative;
  animation: bp-slide-up 0.35s ease;
  box-shadow: 0 20px 60px rgba(25,31,57,0.25);
}
@keyframes bp-slide-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.bp-modal-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: none; border: none; cursor: pointer;
  font-size: 1.1rem; color: var(--bp-gray); line-height: 1;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, color 0.3s;
}
.bp-modal-close:hover { background: var(--bp-cream-2); color: var(--bp-navy); }
.bp-modal-titulo {
  font-family: var(--bp-serif);
  font-size: 1.75rem; font-weight: 300; line-height: 1.25;
  color: var(--bp-navy); margin: 0.75rem 0 0.75rem;
}
.bp-modal-titulo em { font-style: italic; color: #06465E; }
.bp-modal-desc {
  font-family: var(--bp-sans); font-size: 0.75rem; font-weight: 300;
  line-height: 1.9; color: var(--bp-gray); margin-bottom: 1.75rem;
}
.bp-modal-erro {
  font-family: var(--bp-sans); font-size: 0.68rem; color: #c0392b;
  margin: -0.75rem 0 1rem; padding: 0.5rem 0.75rem;
  background: rgba(192,57,43,0.07); border-radius: 6px;
}
/* Sucesso */
.bp-modal-check {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(6,70,94,0.1);
  color: #06465E; font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}