/* Navbar general */
.navbar {
  background-color: #1976D2; /* azul primario */
  padding: 10px 20px;
}

/* Contenedor flex */
.navbar-container {
  display: flex;
  justify-content: space-between; /* marca izquierda, botones derecha */
  align-items: center;
}

/* Logo */
.logo {
  width: 100px;
  height: auto;
  margin-right: 10px;
  vertical-align: middle;
}

/* Marca */
.navbar-brand {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: white;
  text-decoration: none;
  font-family: acumin-pro, system-ui, sans-serif;
}
.navbar-brand:hover {
  color: #f5f5f5;
}

/* Acciones */
.navbar-actions {
  display: flex;
  gap: 12px;
}

/* Botones base */
.btn {
  padding: 6px 14px;
  border-radius: 14px;
  font-size: 14px;
  font-family: acumin-pro, system-ui, sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Bot車n tienda */
.btnnav1 {
  background: #1976D2;
  color: white;
}
.btnnav1:hover {
  background: #1565C0;
}

/* Bot車n cerrar sesi車n */
.btnnavcerrar {
  background: #CFD8DC;
  color: black;
}
.btnnavcerrar:hover {
  background: #B0BEC5;
}

/* Bot車n login */
.btnnaviniciar {
  background: #198754;
  color: white;
}
.btnnaviniciar:hover {
  background: #157347;
}

/* Bot車n crear cuenta */
.btn-warning {
  background: #FFC107;
  color: black;
  border: none;
}
.btn-warning:hover {
  background: #FFB300;
}



/* Contenedor de tabs */
.nav-tabs {
  display: flex;
  justify-content: center; /* igual que nav-justified */
  list-style: none;
  padding: 0;
  margin: 0;
  border-bottom: 2px solid #ddd;
}

/* Cada item */
.nav-tabs li {
  flex: 1; /* ocupa espacio igual */
  text-align: center;
}

/* Links */
.nav-link {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: #1976D2;
  font-weight: 600;
  border: 1px solid transparent;
  border-bottom: none;
  transition: all 0.3s ease;
}

/* Hover */
.nav-link:hover {
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-bottom: none;
}

/* Activo */
.nav-link.active {
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom: 2px solid #1976D2;
  color: #000;
}

/* T赤tulo centrado */
.title {
  text-align: center;
  margin-bottom: 20px;
  font-family: acumin-pro, system-ui, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #333;
}
