
/* MENU B&D GARAGE */
/* =====================
   VARIABLES GENERALES
===================== */
:root {
  --header-height: 40px;
  --logo-size: 120px;
  --logo-gap: 24px;

  --header-bg: #000;
  --brand-color: #A610E5;
  --menu-text: #9b9b9b;
}
@media (max-width: 768px) {
  :root {
    --menu-text: #ffffff; 
}
}
/* =====================
   BARRA NEGRA
===================== */
.web-navbar-dark {
  background-color: var(--header-bg);
}

/* Wrapper que reserva altura */
.header-wrapper {
  height: var(--header-height);
  padding-bottom: calc(var(--logo-size) - var(--header-height));
}

/* Container relativo (CLAVE) */
.header-container {
  position: relative;
  height: 100%;
}

/* =====================
   LOGO FLAG
===================== */
.web-flag-logo {
  width: var(--logo-size);
  height: var(--logo-size);
  background-color: var(--brand-color);

  position: absolute;
  top: 0;
  left: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.web-flag-logo img {
  max-width: 40%;
  height: auto;
}

/* =====================
   GRID HEADER
===================== */
.header-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  height: 100%;

  padding-left: calc(var(--logo-size) + var(--logo-gap));
}

/* =====================
   BRANDS
===================== */
.header-brands {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-brands img {
    width: 56px;
  opacity: 0.35;
  transition: opacity 0.3s ease;
}
.header-brands .pay img{
    width: 80px !important;
}
.header-brands img:hover {
  opacity: 1;
}

/* =====================
   MENÚ PRINCIPAL
===================== */
.web-navbar-nav-white {
  padding-left: calc(var(--logo-size) + var(--logo-gap)) !important;
  padding-top: 8px; 
}
.web-navbar-nav-white .nav-link {
  color: var(--menu-text) !important;
  letter-spacing: 1px;
  font-size: 0.9rem;
}
@media (max-width: 991px) {
  .nav-link {
    color: rgb(216, 216, 216) !important;
  }
}
.active-page {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: var(--brand-color);
}

/* =====================
   MOBILE MENU
===================== */
.web-navbar-open {
  position: fixed;          /* 🔑 */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;

  background-color: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(30px);

  padding: 40px;
  z-index: 9999;

  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.web-navbar-open.show {
  transform: translateY(0);
  opacity: 1;
}

.web-navbar-open.collapsing {
  height: 100vh;         
  display: block;  
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-header img {
  width: 60px;
}

.close {
  background: none;
  border: 0;
  color: white;
  font-size: 1.5rem;
}
.navbar-toggler {
  position: absolute;
  top: 50%;             
  right: 0;             
  transform: translateY(-50%);
  z-index: 20;           
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  padding: 0.25rem 0.5rem;
}

/* =====================
   MOBILE LINKS
===================== */
@media (max-width: 991px) {
  .navbar-nav .nav-link {
    color: white;
    font-size: 14px;
    padding: 10px 0;
  }
}

.language-switch a{
    font-family: "Plus Jakarta Sans", sans-serif;
    color: #27A8FF !important;
    font-weight: 600;
}
a{
    text-decoration: none !important;
}

 *{
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      height: 100%;
      width: 100%;
      font-family: Arial, sans-serif;
    }

    /* Contenedor del video de fondo */
    .video-background {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: -1;
    }

    .video-background video {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Se asegura que el video cubra toda la pantalla */
    }

    /* Overlay negro con opacidad */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6); /* Negro con 60% opacidad */
      display: flex;
      justify-content: center;
      align-items: center;
    }

    /* Logotipo centrado */
    .overlay img {
      max-width: 50%;
      height: auto;
    }

.whatsapp-btn {
  width: 45px;
  height: 45px;
  background-color: white;
  border-radius: 100px;
  position: fixed;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #A610E5;
  font-size: 20px;
  margin-right: 25px;
  margin-bottom: 25px;
  z-index: 1000 !important;
  -webkit-box-shadow: 3px 6px 28px -7px rgba(0, 0, 0, 0.3);
  box-shadow: 3px 6px 28px -7px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn:hover {
  color: #bb37f3;
}
.download-btn {
  width: 145px;
  height: 45px;
  background-color: #A610E5;
  border-radius: 100px;
  position: fixed;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: white;
  font-size: 15px !important;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-right: 84px;
  margin-bottom: 25px;
  z-index: 1000 !important;
  -webkit-box-shadow: 3px 6px 28px -7px rgba(0, 0, 0, 0.3);
  box-shadow: 3px 6px 28px -7px rgba(0, 0, 0, 0.3);
}

.download-btn:hover {
  color: rgb(228, 228, 228);
}