/*
 * LV Capital – estilos mínimos (hero e CTA com imagem de fundo)
 * Layout e utilitários via Tailwind
 */

/* Fallback quando a imagem não carrega */
.hero-bg {
  background-color: #1d1d1b;
  background-image: linear-gradient(rgba(29, 29, 27, 0.88), rgba(29, 29, 27, 0.88)), url('hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-bg {
  background-color: #1d1d1b;
  background-image: linear-gradient(rgba(29, 29, 27, 0.92), rgba(29, 29, 27, 0.92)), url('hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Menu mobile aberto (Tailwind hidden = display:none; este sobrescreve quando .open) */
#nav-mobile.open {
  display: flex !important;
}
