@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --na:  #f97316;
  --na2: #ea6a0a;
  --na3: #fff7ed;
  --ma:  #0f2137;
  --ma2: #1a3252;
  --ma3: #234267;
  --wh:  #ffffff;
  --bd:  #e2e5ee;
  --tx:  #0f2137;
  --tx2: #4b5675;
  --tx3: #9aa0b4;
  --f:   'Plus Jakarta Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f);
  background: var(--ma);
  color: var(--wh);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }

/* ══ FONDO ANIMADO ══ */
.bv-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.bv-bg::before {
  content: '';
  position: absolute;
  top: -30%; left: -20%;
  width: 70vw; height: 70vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,.13) 0%, transparent 65%);
  animation: float1 8s ease-in-out infinite alternate;
}
.bv-bg::after {
  content: '';
  position: absolute;
  bottom: -20%; right: -15%;
  width: 60vw; height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,.10) 0%, transparent 65%);
  animation: float2 10s ease-in-out infinite alternate;
}
@keyframes float1 { from { transform: translate(0,0) scale(1); } to { transform: translate(4%, 6%) scale(1.08); } }
@keyframes float2 { from { transform: translate(0,0) scale(1); } to { transform: translate(-5%, -4%) scale(1.06); } }

/* Puntos decorativos */
.bv-dots {
  position: fixed;
  inset: 0; z-index: 0;
  background-image: radial-gradient(rgba(249,115,22,.08) 1px, transparent 1px);
  background-size: 36px 36px;
}

/* ══ NAVBAR MÍNIMA ══ */
.nav-bv {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 60px;
  background: rgba(15,33,55,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--na);
  display: flex;
  align-items: center;
  padding: 0 20px;
}
.nav-bv-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-bv-logo { height: 36px; object-fit: contain; }
.nav-bv-contacto {
  display: flex; align-items: center; gap: 7px;
  background: rgba(249,115,22,.15);
  color: var(--na);
  border: 1.5px solid rgba(249,115,22,.35);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 13px; font-weight: 600;
  cursor: pointer; transition: .15s ease;
  text-decoration: none;
}
.nav-bv-contacto:hover {
  background: var(--na);
  color: #fff;
  border-color: var(--na);
}

/* ══ CONTENIDO PRINCIPAL ══ */
.bv-main {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 60px;
  text-align: center;
}

/* Logo empresa grande */
.bv-logo-wrap {
  margin-bottom: 28px;
  position: relative;
  display: inline-block;
}
.bv-logo-ring {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: rgba(249,115,22,.12);
  border: 2px solid rgba(249,115,22,.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
  animation: pulseRing 3s ease-in-out infinite;
}
@keyframes pulseRing {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249,115,22,.2); }
  50%       { box-shadow: 0 0 0 16px rgba(249,115,22,.0); }
}
.bv-logo-img {
  height: 72px; width: 72px;
  object-fit: contain;
  border-radius: 16px;
}

/* Nombre empresa */
.bv-empresa {
  font-size: clamp(13px, 3vw, 16px);
  font-weight: 700;
  color: var(--na);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: .9;
}

.bv-titulo {
  font-size: clamp(28px, 7vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.bv-titulo em { color: var(--na); font-style: normal; }

.bv-subtitulo {
  font-size: clamp(14px, 2.5vw, 18px);
  color: rgba(255,255,255,.55);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.6;
  font-weight: 400;
}

/* Chips de características */
.bv-chips {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.bv-chip {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.75);
}
.bv-chip i { color: var(--na); font-size: 13px; }

/* Botón contacto CTA */
.bv-btn-cta {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--na);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 15px 32px;
  font-size: 15px; font-weight: 700;
  cursor: pointer;
  transition: .2s ease;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(249,115,22,.35);
}
.bv-btn-cta:hover {
  background: var(--na2);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(249,115,22,.4);
  color: #fff;
}

/* Separator */
.bv-sep {
  display: flex; align-items: center; gap: 14px;
  margin: 28px auto 28px;
  max-width: 300px;
  color: rgba(255,255,255,.2);
  font-size: 12px;
}
.bv-sep::before, .bv-sep::after {
  content: ''; flex: 1; height: 1px;
  background: rgba(255,255,255,.1);
}

/* Tarjetas de info (dirección, horario, teléfono) */
.bv-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}
@media(max-width:575px){ .bv-info-grid { grid-template-columns: 1fr; max-width: 340px; } }

.bv-info-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 20px 18px;
  text-align: center;
  transition: .18s ease;
}
.bv-info-card:hover {
  background: rgba(249,115,22,.1);
  border-color: rgba(249,115,22,.3);
}
.bv-info-ico {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(249,115,22,.15);
  color: var(--na);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin: 0 auto 10px;
}
.bv-info-lbl { font-size: 10px; font-weight: 700; color: var(--na); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 5px; }
.bv-info-val { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85); line-height: 1.5; }

/* ══ SECCIÓN CONTACTO (si hace click en contactar) ══ */
.bv-contacto-section {
  display: none;
  position: relative; z-index: 10;
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px 60px;
}
.bv-contacto-section.show { display: block; }

.bv-form-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  overflow: hidden;
}
.bv-form-hdr {
  background: linear-gradient(135deg, var(--na) 0%, var(--na2) 100%);
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.bv-form-hdr span { font-size: 14px; font-weight: 700; color: #fff; }
.bv-form-hdr button {
  background: rgba(255,255,255,.2); border: none; color: #fff;
  width: 28px; height: 28px; border-radius: 50%;
  font-size: 13px; cursor: pointer; transition: .15s;
  display: flex; align-items: center; justify-content: center;
}
.bv-form-hdr button:hover { background: rgba(255,255,255,.35); }

.bv-form-body { padding: 20px; }
.bv-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  color: #fff;
  font-size: 13px;
  font-family: var(--f);
  outline: none;
  transition: .15s;
  margin-bottom: 12px;
}
.bv-input::placeholder { color: rgba(255,255,255,.3); }
.bv-input:focus { border-color: var(--na); background: rgba(255,255,255,.1); }
textarea.bv-input { resize: vertical; min-height: 100px; }
.bv-input-lbl {
  font-size: 10px; font-weight: 700; color: rgba(255,255,255,.4);
  text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 5px; display: block;
}
.bv-btn-enviar {
  width: 100%;
  background: var(--na); color: #fff; border: none;
  border-radius: 8px; padding: 12px;
  font-size: 14px; font-weight: 700;
  cursor: pointer; transition: .15s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--f);
}
.bv-btn-enviar:hover { background: var(--na2); }

/* ══ FOOTER MÍNIMO ══ */
.bv-footer {
  position: relative; z-index: 10;
  padding: 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: 12px;
  color: rgba(255,255,255,.25);
}

/* ══ ANIMACIONES DE ENTRADA ══ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp .6s ease forwards;
}
.fade-up:nth-child(1) { animation-delay: .1s; }
.fade-up:nth-child(2) { animation-delay: .2s; }
.fade-up:nth-child(3) { animation-delay: .3s; }
.fade-up:nth-child(4) { animation-delay: .4s; }
.fade-up:nth-child(5) { animation-delay: .5s; }
.fade-up:nth-child(6) { animation-delay: .6s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}